|
|
 |
phpdoc
[PHP-DOC] #39806 [Com]: JSON encoding in french
by Stochnagara At Hotmail Dot Com other posts by this author
Dec 13 2006 3:11AM messages near this date
[PHP-DOC] #39818 [NEW]: "any English textual datetime description" is ambigious
|
[PHP-DOC] #39813 [NEW]: Wrong link to PEAR on mail page
ID: 39806
Comment by: stochnagara at hotmail dot com
Reported By: philippe dot levan_nospam at kitpages dot fr
Status: Open
Bug Type: Documentation problem
Operating System: Windows/Linux
PHP Version: 5.2.0
New Comment:
I think this is not only a documentation problem. The JSON encoder
silently ignores the rest of the text. I think a warning should be
raised because such problem cause a lot of debugging in order to find
out that actually the JSON encoder cut the string to a certain place.
Previous Comments:
------------------------------------------------------------------------
[2006-12-12 11:05:20] tony2001@[...].net
JSON supports only UTF8 strings.
Reclassified as docu problem.
------------------------------------------------------------------------
[2006-12-12 10:52:40] philippe dot levan_nospam at kitpages dot fr
Description:
------------
json_encode stops when it finds an accent in the string
Reproduce code:
---------------
<?php
$title="nos succ�s";
$json = json_encode($title);
header("Content-type: plain/text");
echo "title=$title\n";
echo "json=$json\n";
?>
Expected result:
----------------
title=nos succ�s
json="nos succ�s"
Actual result:
--------------
title=nos succ�s
json="nos succ"
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=39806&edit=1
|
|
|
 |
|