Maison >développement back-end >tutoriel php >json_encode()函数为啥不能解析带中文的JSON字符串呢

json_encode()函数为啥不能解析带中文的JSON字符串呢

WBOY
WBOYoriginal
2016-06-13 11:24:01887parcourir

json_encode()函数为什么不能解析带中文的JSON字符串呢?
这样就有值:

<br />$a = '{ "a":"www", "b":2}';<br />$arr = json_decode($a, true);<br />


这样就返回NULL:
<br />$a = '{ "a":"你好", "b":2}';<br />$arr = json_decode($a, true);<br />


为什么出现这种情况呢?该怎么解析带中文的JSON字符串呢?

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn