<?php $json_string = $_POST["txt_json"]; if(ini_get("magic_quotes_gpc")=="1") { $json_string=stripslashes($json_string); } $user = json_decode($json_string); echo var_dump($user); ?>
在這個檔案中,首先得到html檔案中POST表單域txt_json的值,放入變數$json_string中,而後判斷,如果當前PHP的設定為magic_quotes_gpc=On,即傳入的雙引號等會被轉義,這樣json_decode函數無法解析,因此我們要將其反轉義化。而後,使用json_decode函數將JSON文字轉換為對象,保存在$user變數中,最後用echo var_dump($user);,將該物件dump輸出出來
更多使用PHP接收POST資料,解析json數據相關文章請關注PHP中文網!