1. 程式人生 > >json_decode()相關報錯

json_decode()相關報錯

錯誤描述

  PHP Warning:  json_decode() expects parameter 1 to be string, array given in xxx.php on line 299

原因分析

  json_decode函式是用來解碼json_encode編碼後的函式,他的引數是必須是一個json字串,上面的錯誤就是給json_decode傳入的引數是一個數組導致的報錯

解決方法

  根據錯誤行號找到程式碼段,檢查是否給json_decode傳入的不是一個json字串。