PHP微信发送推送消息乱码怎么办

  • 来源:网络
  • 更新日期:2020-08-05

摘要:PHP微信发送推送消息乱码的解决办法:首先中文在数组转json时会被编码为unicode,使用urlencode识别微信接口;然后在【json_encode】前进行编码;最后等转换后再用urldecode转回来

PHP微信发送推送消息乱码的解决办法:首先中文在数组转json时会被编码为unicode,使用urlencode识别微信接口;然后在【json_encode】前进行编码;最后等转换后再用urldecode转回来即可。

PHP微信发送推送消息乱码的解决办法:

先用urlencode是因为中文在数组转json时会被编码为unicode,微信接口无法识别,所以得在json_encode前先来个编码,等转换后再用urldecode转回来,这样传输给接口的就是正常的中文了。

参考代码:

$message = array(
  'touser'=>$touser,
  'msgtype'=>'text',
  'text'=>array('content'=>urlencode($text))
);
$message = urldecode(json_encode($message));

相关学习推荐:php图文教程