我需要解析XML文件的汇率问题...问题是我从未见过以这种方式编写的XML文件:
http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml
问题是,我如何解析&#34;货币&#34;和&#34;率&#34;来自每个<Cube/>
子节点?
然后我需要用PHP脚本详细说明它们
答案 0 :(得分:1)
使用simplexml
访问属性:
$xml = simplexml_load_string($x); // assume XML in $x
foreach ($xml->Cube->Cube->Cube As $c)
echo "$c[currency]: $c[rate] <br />";
在行动中看到它:http://codepad.viper-7.com/SaoEdB
请参阅simplexml
解释:http://www.php.net/manual/en/simplexml.examples-basic.php