使用 php 自带的 json_encode
函数对数据进行编码时,中文都会变成 unicode,前面我介绍了PHP使中文不被 json_encode 不编码成 unicode。
如果已经被 json_encode
编码成 unicode 之后,怎么转换回中文呢?可以使用下面该函数将 unicode 进行转换:
function hasah_unicode_decode($str){
return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function($matches){
return mb_convert_encoding(pack("H*", $matches[1]), 'UTF-8', 'UCS-2BE');
}, $str);
}