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

How to solve php WeChat output garbled characters

藏色散人
藏色散人 Original
2021-12-07 09:45:30 1836browse

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

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!

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