本文操作环境:windows7系统、PHP7.4版、DELL G3电脑
php 微信返回的消息是乱码怎么办?
PHP微信发送推送消息乱码的解决方法
先用urlencode是因为中文在数组转json时会被编码为unicode,微信接口无法识别,所以得在json_encode前先来个编码,等转换后再用urldecode转回来,这样传输给接口的就是正常的中文了。
参考代码:
$message = array(
'touser'=>$touser,
'msgtype'=>'text',
'text'=>array('content'=>urlencode($text))
);
$message = urldecode(json_encode($message));