Home  >  Article  >  WeChat Applet  >  What to do if the json format is incorrect in WeChat development

What to do if the json format is incorrect in WeChat development

王林
王林Original
2020-05-11 11:07:403513browse

What to do if the json format is incorrect in WeChat development

Problem:

When using PHP language for WeChat development, a data format error occurs when creating a coupon, and the error return information is as follows:

{“errcode”:47002,”errmsg”:”data format error, do NOT use json unicode encode (\uxxxx\uxxxx), please use utf8 encoded text! hint: [udJhFa0680e569]”}

Solution:

Just add the parameter JSON_UNESCAPED_UNICODE when using the json_encode function in PHP, such as:

json_encode($arr,JSON_UNESCAPED_UNICODE)

The above is the detailed content of What to do if the json format is incorrect in WeChat development. 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