使用echo json_encode($ array,JSON_UNESCAPED_UNICODE);
我收到此错误
警告:json_encode()需要1个参数,2个给定
答案 0 :(得分:7)
你的php版本可能太低了:
http://php.net/manual/en/function.json-encode.php
string json_encode ( mixed $value [, int $options = 0 ] )
5.3.0 The options parameter was added
答案 1 :(得分:4)
请参阅http://code.google.com/p/apns-php/issues/detail?id=22处的补丁,它允许在PHP 5.2上使用相同的功能。
基本上运行这样的事情:
foreach ($array as &$val) {
$val = preg_replace_callback('/\\\\u([0-9a-f]{4})/i',
function($matches) {
return mb_convert_encoding(pack('H*', $matches[1]), 'UTF-8', 'UTF-16');
}, $val);
}