TecEye
New member
Code:
$xml = simplexml_load_string(file_get_contents("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml"));
$ecb_rate = $xml->Cube->Cube->Cube[10]['rate'];
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
$xml = simplexml_load_string(file_get_contents("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml"));
$ecb_rate = $xml->Cube->Cube->Cube[10]['rate'];
Dann mußt du mit XPath das Element suchen, daß als currency-Attribut CHF hat.
$xml = simplexml_load_file("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");
$xml->registerXPathNamespace('_',"http://www.ecb.int/vocabulary/2002-08-01/eurofxref" );
$rateArr = $xml->xpath("//_:Cube[@currency='CHF']/@rate");
$rateCHF = (string)$rateArr[0];
var_dump($rateCHF); //string(6) "1.0913"