Home>Article>Backend Development> How to solve php WeChat output garbled characters
Solution to php WeChat output garbled code: 1. Use urlencode for encoding; 2. Convert the encoding through "urldecode(json_encode($message));" method.
#The operating environment of this article: Windows 7 system, PHP version 7.4, Dell G3 computer.
How to solve the garbled output of PHP WeChat?
Solution to the garbled push message sent by PHP WeChat
First Urlencode is used because Chinese will be encoded into unicode when the array is converted to json, and the WeChat interface cannot recognize it, so you have to encode it before json_encode, and then use urldecode to convert it back after the conversion, so that what is transmitted to the interface is normal Chinese. .
Reference code:
$message = array( 'touser'=>$touser, 'msgtype'=>'text', 'text'=>array('content'=>urlencode($text)) ); $message = urldecode(json_encode($message));
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to solve php WeChat output garbled characters. For more information, please follow other related articles on the PHP Chinese website!