http://example.com/api/orderDetails.php?{「user_id」:1,「itemList」:[{「max_price」:120,「min_price」:100,「trend」:「high」,「c_price」:110,「status」:「1」 「類型」: 「蔬菜」, 「ITEM_ID」:19},{ 「MAX_PRICE」:200, 「MIN_PRICE」:100, 「趨勢」: 「低」, 「c_price」:100, 「狀態」: 「1」 ,「type」:「veg」,「item_id」:224}],「table_no」:「1」}如何解碼獲取我的url中的json數據的json?
-3
A
回答
0
如何解碼php?
$object_from_json = json_decode('{"user_id":1,"itemList":[{"max_price":120,"min_price":100,"trend":"high","c_price":110,"status":"1","type":"veg","item_id":19},{"max_price":200,"min_price":100,"trend":"low","c_price":100,"status":"1","type":"veg","item_id":224}],"table_no":"1"}');
//or
$array_from_json = json_decode('{"user_id":1,"itemList":[{"max_price":120,"min_price":100,"trend":"high","c_price":110,"status":"1","type":"veg","item_id":19},{"max_price":200,"min_price":100,"trend":"low","c_price":100,"status":"1","type":"veg","item_id":224}],"table_no":"1"}', true);
//then you got a Array in PHP
//var_dump($array_from_json);
//with an URL
$array_from_json_url = json_decode(file_get_contents($json_url), true);
//var_dump($array_from_json_url);
你需要你的網頁PHP orderDetails.php上添加響應頭需要回聲
header("Content-type:application/json");
//$output is array or object PHP
echo json_encode($oupout);
+0
如何通過$ _REQUEST方法獲取它。我試過了$ array_from_json = json_decode($ _ REQUEST,true);但是獲得null在我的迴應中 – Aks
相關問題
- 1. JSON解碼不獲取URL
- 2. 如何在PHP中獲取已解碼的JSON數據的值
- 3. 如何在php中獲取嵌套的json解碼數據。
- 4. 從Javascript中的URL獲取JSON數據
- 5. json從url解析數據獲取nullpointException
- 6. 如何解析URL的JSON數據?
- 7. 從url獲取json數據
- 8. 如何從android中的json url獲取新的數據更新?
- 9. json解碼獲取值特定數據
- 10. 如何從Json數組中解析和獲取Json數組中的數據?
- 11. 如何從php文件中的url中獲取JSON數據。
- 12. 如何從URL獲取並解析Json?
- 13. 我如何通過ID獲取json數據中的數據
- 14. 如何從URL中獲取JSON參數
- 15. jQuery的如何從我的JSON數組中獲取數據
- 16. 如何解析獲取的URL中的JSON?
- 17. 如何從Java中的URL獲取JSON數據?
- 18. 如何從Android中的JSON或URL獲取特定數據?
- 19. 的Android解碼JSON數據
- 20. 如何解碼關於json數據的url?
- 21. 如何從JSON數據中提取URL?
- 22. 如何從url中讀取JSON數據
- 23. json數據沒有從url中獲取
- 24. JsTree和JSON - 從URL中獲取數據
- 25. 如何解析我的JSON數據IOS5
- 26. 如何獲取JSON數據
- 27. 如何從URL獲取JSON
- 28. 如何獲取我的Facebook相冊中照片的JSON數據?
- 29. 在URL上獲取JSON的本地JSON數據
- 30. 我如何動態顯示我的json解碼數據到ul
你在哪裏接收網址前是一個JSON格式?什麼是你的應用程序的類型? –
我從android.I得到這個url我必須插入每個項目在我的數據庫。問題是我如何解碼這個JSON,這樣我就可以獲得數組數據 – Aks
剛剛添加了答案,但你需要你的URL是一個有效的JSON格式並確保你這樣做,你必須使用json內容強制響應頭。 –