Læse tomme elementer i php?
Jeg står og skal læse noget data ind fra en ekstern xml-fil, men af en eller anden grund, vil php ikke læse de tomme elementer.Mit xml kan ses her:
http://a3683291805.api.wxbug.net/getLiveCompactWeatherRSS.aspx?ACode=a3683291805&cityCode=60077&UnitType=1&OutputType=1
når jeg kører flg. kode på det:
$city = $_REQUEST["cityCode"];
$unitType = $_REQUEST["UnitType"];
$outPutType = $_REQUEST["OutputType"];
$apiKey = "a3683291805";
$URL = "http://".$apiKey.".api.wxbug.net/getLiveCompactWeatherRSS.aspx?ACode=".$apiKey."&cityCode=".$city."&UnitType=".$unitType."&OutputType=".$outPutType;
$xml_output = implode('', file($URL));
echo $xml_output."<br />";
$xml = simplexml_load_string($xml_output);
echo $xml->weather->WebURL." ";
Er det kun WebURL og InputLocationUrl der bliver outputtet (som set på http://klasseliste.dk/fancyMenu/getWeather.php?cityCode=60077&UnitType=1&OutputType=1
Er der en måde jeg kan tvinge php til at læse de tomme elementer også? (jeg har også prøvet med file_get_contents();)