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

王林
Release: 2020-05-11 11:07:40
Original
3566 people have browsed it

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]”}
Copy after login

Solution:

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

json_encode($arr,JSON_UNESCAPED_UNICODE)
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template