PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $url = 'https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml'; $data = file_get_contents($url); $xml = simplexml_load_string($data); $json = json_encode($xml); $array = json_decode($json,TRUE); #$array = $array['Cube']['Cube']['Cube']; #print_r($array); $k = 1; $x = 1; foreach($array['Cube']['Cube']['Cube'] as $x){ $cb = $x['@attributes']['currency']; $cb1 = $x['@attributes']['rate']; $cb2 = 5; $cb3 = $cb1*$cb2; echo $k++.". ".$cb." - ".ksort($cb1)." ".round($cb3, 2)."\n"; }
Show:  
Copy Clear