問題:
使用PHP語言進行微信開發時,在建立卡券的時候出現資料格式錯誤,錯誤回傳資訊如下:
{“errcode”:47002,”errmsg”:”data format error, do NOT use json unicode encode (\uxxxx\uxxxx), please use utf8 encoded text! hint: [udJhFa0680e569]”}
解決方法:
使用PHP中的json_encode函數時加上參數JSON_UNESCAPED_UNICODE即可,如:
json_encode($arr,JSON_UNESCAPED_UNICODE)
以上是微信開發中json格式不正確怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!