我想讀從PHP一個JSON這樣的:讀取外部JSON在PHP
[{
"titulo": "DontAsk",
"pais": "Austria",
"country_iso": "AT",
"direccion": "Mag. Th. Langmann Gmbh Landstrasse 4",
"cp_ciudad": "A-2000 STOCKERAU",
"lat": "48.385583",
"long": "16.207823",
"telefono": "43-2266-72554-11",
"fax": "43-2266-72554-44",
"web": "www.aaa.com"
}, {
"titulo": "Other One",
"pais": "Czech Republic",
"country_iso": "CZ",
"direccion": "Pod Cihelnou 6",
"cp_ciudad": "664 161 00 PRAHA 6",
"lat": "50.092605",
"long": "14.312707",
"telefono": "420 233 313 578",
"fax": "420 233 313 582",
"web": "www.bbb.com"
}]
的JSON有沒有錯誤,我試着用JsonLint,發現它乾淨。 我有更多的插入,但我只是推杆2.
然後我嘗試代碼行這樣的:
$json = json_decode(file_get_contents($url), true);
var_dump($json);
的URL返回檢索URL不錯,但在返回的var_dump NULL
我看到了很多答案和問題,並沒有找到答案。 有些幫助?
讀JSON - >在陣列轉換在PHP - >提取的陣列中的上述代碼
由於
可能的重複[如何從JSON提取數據與PHP?](http://stackoverflow.com/questions/29308898/how-do-i-extract-data-from-json-with-php) –
你有什麼問題? –
這個JSON字符串用'json_decode'正確解析。 https://3v4l.org/3Qn0V檢查'file_get_contents($ url)'是否給你預期的結果。 –