From:             neonira at gmail dot com
Operating system: windows XP
PHP version:      5.2.6
PHP Bug Type:     JSON related
Bug description:  json_encode looses accentuated characters

Description:
------------
I checked that the file encoding character set for the php source file is
UTF-8. So it means, I provide a real UTF-8 entry, and I don't need to use
ut8_encode. 

It seems that accentuated caracters are truncated or not well managed
while json-encoding a string.



Reproduce code:
---------------
<?php

setlocale(LC_ALL, "fr");
class CT {
  var $link;
  var $str;
  var $arr;

  function document() {
     $this->link = "http://www.neonira.com";;
     $this->str = "chaîne avec caractères accentués ... ";
     $this->arr = array(1, 3, "lala", "123", array ( 'a', 'b', 'c'),
134);
  }
}

$c = new CT();
$c->document();
echo json_encode($c);

?>

Expected result:
----------------
shell>php ../php/ct.php
{"link":"http:\/\/www.neonira.com","str":"chaîne avec caractères accentués
... ","arr":[1,3,"lala","123",["a","b","c"],134]}shell>

Actual result:
--------------
shell>{107}php ../php/ct.php
{"link":"http:\/\/www.neonira.com","str":"cha","arr":[1,3,"lala","123",["a","b","c"],134]}shell>


-- 
Edit bug report at http://bugs.php.net/?id=45594&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=45594&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=45594&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=45594&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=45594&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=45594&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=45594&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=45594&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=45594&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=45594&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=45594&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=45594&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=45594&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=45594&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=45594&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=45594&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=45594&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=45594&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=45594&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=45594&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=45594&r=mysqlcfg

Reply via email to