What to do if PHP WeChat sends garbled push messages

coldplay.xixi
Release: 2023-03-03 20:02:01
Original
3550 people have browsed it

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));
Copy after login

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!

Related labels:
php
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!