api-php中url接收的json資料,json_decode為空白

來源:互聯網
上載者:User
關鍵字 php api json 手機 伺服器與用戶端通訊
phpapijson手機伺服器與用戶端通訊

#php後台json資料decode為結果空#
我使用手機傳輸資料到php後台,json_decode的結果為空白。
手機傳輸的方式為POST/GET,編碼格式為UTF-8。
json資料為(包括代碼中的單引號,我用字串傳輸,json資料中必須為雙引號):

   '{"agent":"30","job":"1133","students":[{"working_hours_unit":"null","working_hours":"6","student_id":"191","commission_unit":"null","wage":"58","commission":"348","wage_unit":"null"}]}'

php代碼擷取到了以上json資料,並且能夠使用echo輸出。php代碼:

 $str=$_GET('my_str'); echo $str;

輸出測試結果然後我接著decode接收到的json資料,代碼:

 $form = json_decode($Noel,true); var_dump($form);

但很意外輸出為**null** ,然後我用_echo json_last_error();_輸出json轉換錯誤,結果為4===json語法錯誤。
附上完整代碼和:

     $str=$_GET('my_str');  echo $str;$form = json_decode($str,true); var_dump($form); echo json_last_error();


但是,當我把接收到的json單獨接到PHP代碼中,然後decode卻能夠正確解析。(我內心是崩潰的 〒_〒)
代碼:`

     $orm='{"agent":"30","job":"1133","students":[{"working_hours_unit":"null","working_hours":"6","student_id":"191","commission_unit":"null","wage":"58","commission":"348","wage_unit":"null"}]}';  $arr=json_decode($form,true);  var_dump($arr);


  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.