我需要顯示來自文件XML(https://pogoda.yandex.ru/static/cities.xml)的數據的數組PHP。我想排列所有「ID」。幫我找到錯誤。由於XML到PHP不顯示數組
<?php
$data_file_city="https://pogoda.yandex.ru/static/cities.xml";
$xml_city = simplexml_load_file($data_file_city);
foreach($xml_city->country as $key=>$value){
foreach ($value->city as $key1=>$value1) {
$id = array("$value1[country]");
echo $id;
}
}
'陣列( 「$值1 [國家]」)'?這是什麼? –
您正在將'$ id'定義爲'array',使用'print_r($ id)'顯示內容,或者從'$ id =' – RST
中刪除'array()'部分我需要這個數組用於JS循環。我只得到字符串 –