Home  >  Article  >  Backend Development  >  What to do if Chinese garbled characters appear when converting php array to json

What to do if Chinese garbled characters appear when converting php array to json

藏色散人
藏色散人Original
2020-10-08 15:10:273008browse

The solution to the Chinese garbled code when converting php array to json: first open the PHP file with garbled code; then add a parameter "JSON_UNESCAPED_UNICODE" to the "json_encode" function.

What to do if Chinese garbled characters appear when converting php array to json

Recommended: "PHP Video Tutorial"

First of all, the phenomenon is like this, an array array is defined, The array contains Chinese characters, as shown in the following figure:

What to do if Chinese garbled characters appear when converting php array to json

# After the execution is completed, the Chinese character 'My Information' contained becomes '\u6211\u7684\u4fe1 \u606f'Unintelligible gibberish. As shown in the figure below:

What to do if Chinese garbled characters appear when converting php array to json

Solution: Add one more parameter to json_encode: JSON_UNESCAPED_UNICODE to solve the problem. As shown below:

What to do if Chinese garbled characters appear when converting php array to json

The above is the detailed content of What to do if Chinese garbled characters appear when converting php array to json. For more information, please follow other related articles on the PHP Chinese website!

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