Possible Duplicate:
Json_encode Charset problem
How can I produce JSON unescaped unicodes in php 5.3.x ?
example:
array("name"=>"some unicode chars");
will be JSONed like this :
{"name":"\Uxxx\Uyyy\Uzzz\Usss \U123......."}
where xxx
and yyy
are the equivalent unicode values of the characters in the original array.
Now I need the JSON to output like this:
{"name":"some unicode chars"}