Home >Backend Development >PHP Tutorial >PHP json encoding method without escaping Chinese characters_PHP tutorial

PHP json encoding method without escaping Chinese characters_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:58:25704browse

Although the latest PHP 5.4 has good support for JSON Chinese encoding, that is, through the JSON_UNESCAPED_UNICODE parameter, for example:

json_encode("Chinese", JSON_UNESCAPED_UNICODE) For earlier PHP versions, Chinese is not processed. JSON encoding of characters. I have previously written an article on PHP outputting Chinese JSON strings. Here is a more perfect method:

/**
* JSON encoding method without escaping Chinese characters
* @param array $arr Array to be encoded
* @return string
*/
function encode ($arr) {

$str = json_encode($arr);
$search = "#\u([0-9a-f]+)#ie";
$replace = "iconv('UCS -2', 'UTF-8', pack('H4', '\1'))";

return preg_replace($search, $replace, $str);

}

Source: Mango Station

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/363815.htmlTechArticleAlthough the latest PHP 5.4 already supports JSON Chinese encoding, that is, through the JSON_UNESCAPED_UNICODE parameter, for example: json_encode(Chinese, JSON_UNESCAPED_UNICODE )For earlier PHP versions,...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn