我有點熟悉xml和json解析,但是Im對這個站點有問題。我試過PHP從xml文件解析json
$json_string="http://meteo.arso.gov.si/uploads/probase/www/plus/timeline/timeline_radar_si_short.xml";
$json = file_get_contents($json_string);
$arr=json_decode($json_string, true);
但它不起作用。當我分析數據時,我發現json中有一些javascript變量在javascript運行時轉爲數據,所以也許這就是爲什麼它不起作用。不知道如何解決它。
我想要做的是將值「9:10 CEST」...和「si0_20140930-0710_zm_si.jpg」...解析爲php數組。
它是XML而不是你試圖解碼的JSON。使用'simplexml'來代替。 – 2014-09-30 10:39:27
文件是xml。那麼,爲什麼你使用json_decode()? – Khushboo 2014-09-30 10:39:35
不適用於xml eather – Jakadinho 2014-09-30 10:43:56