使用PHP从特定XML文件解析数据

时间:2013-08-13 14:47:29

标签: php xml parsing

我需要解析XML文件的汇率问题...问题是我从未见过以这种方式编写的XML文件:

http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml

问题是,我如何解析&#34;货币&#34;和&#34;率&#34;来自每个<Cube/>子节点?

然后我需要用PHP脚本详细说明它们

1 个答案:

答案 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