php微信輸出亂碼的解決方法:1、使用urlencode進行編碼;2、透過「urldecode(json_encode($message));」方式轉換編碼即可。
本文操作環境: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));
#推薦學習:《PHP影片教學》
以上是如何解決php 微信輸出亂碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!