Hallo,
also ich hab da ein paar Probleme, beim Parsen einer XML-Datei... Die relevanten Zeilen darin sind diese hier:
[code=xml]
<yweather:location city="Berlin" region="" country="GM"/>
<yweather:units temperature="C" distance="km" pressure="mb" speed="kph"/>
<yweather:wind chill="-6" direction="220" speed="11"/>
<yweather:atmosphere humidity="83" visibility="999" pressure="0" rising="0"/>
<yweather:astronomy sunrise="7:12 am" sunset="6:09 pm"/>[code]
Nun will ich die Attribute und die dazugehörigen Values so in mein PHP-Script bekommen:
$city = "Berlin";
$region = "";
$country = "GM";
usw.
Weiß jemand bescheid, was für Funktionen da relevant sind? Oder ein Beispiel, wo das erläutert wird?
Gruß
Bernd