我知道的有两种方法:
第一种:
$res = urldecode(json_encode(urlencode("中文")));
第二种:
PHP5.4版本给Json新增了一个选项: JSON_UNESCAPED_UNICODE。加上就不会自动把中文编码了。
$res = json_encode("中文", JSON_UNESCAPED_UNICODE);
我知道的有两种方法:
第一种:
$res = urldecode(json_encode(urlencode("中文")));
第二种:
PHP5.4版本给Json新增了一个选项: JSON_UNESCAPED_UNICODE。加上就不会自动把中文编码了。
$res = json_encode("中文", JSON_UNESCAPED_UNICODE);