ホームページ >バックエンド開発 >PHPチュートリアル >json_encode() 関数が中国語の文字を含む JSON 文字列を解析できないのはなぜですか?
json_encode() 関数が中国語の文字を含む JSON 文字列を解析できないのはなぜですか?
これには次の値があります:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $a = '{ "a":"www", "b":2}'; $arr = json_decode($a, true);
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $a = '{ "a":"你好", "b":2}'; $arr = json_decode($a, true);