Home  >  Article  >  Backend Development  >  What to do if PHP WeChat sends garbled push messages

What to do if PHP WeChat sends garbled push messages

coldplay.xixi
coldplay.xixiOriginal
2020-08-05 11:29:423421browse

Solution to the garbled push message sent by PHP WeChat: First, Chinese will be encoded into unicode when the array is converted to json, use urlencode to identify the WeChat interface; then encode before [json_encode]; finally wait for conversion before using Just convert urldecode back.

What to do if PHP WeChat sends garbled push messages

Solution to the garbled push message sent by PHP WeChat:

What to do if PHP WeChat sends garbled push messages

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));

Related learning recommendations: php graphic tutorial

The above is the detailed content of What to do if PHP WeChat sends garbled push messages. 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