标签:blog http os io strong ar 数据 2014 art
ios程序中不识别读取到的JSON数据中 \u开头的数据。
PHP 生成JSON的时候,必须将汉字不转义为 \u开头的UNICODE数据。
网上非常多,可是事实上都是错误的,正确的方法是在json_encode 中添?一个參数 JSON_UNESCAPED_UNICODE (by default7#zbphp.com)
json_encode($data, JSON_UNESCAPED_UNICODE); //必须PHP5.4+
官网的说明:http://php.net/manual/en/function.json-encode.php
标签:blog http os io strong ar 数据 2014 art
原文地址:http://www.cnblogs.com/hrhguanli/p/3954337.html