Home > Backend Development > PHP Problem > How to solve php WeChat output garbled characters

How to solve php WeChat output garbled characters

藏色散人
Release: 2023-03-14 10:26:02
Original
1965 people have browsed it

Solution to php WeChat output garbled code: 1. Use urlencode for encoding; 2. Convert the encoding through "urldecode(json_encode($message));" method.

How to solve php WeChat output garbled characters

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

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!

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