使用PHP的XML解析器

时间:2013-04-26 10:08:35

标签: php xml-parsing

我有这个xml内容。我需要从fullName属性中获取值。我已经尝试使用lib.xml解析器。但它没有用。你能帮助我实现这个目标吗?提前谢谢。

<?xml version="1.0" encoding="UTF-8"?><currentUserDetails firstName="3rdParty" fullName="3rdParty Access" lastName="Access" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="" xmlns=""/>

2 个答案:

答案 0 :(得分:4)

使用simplexml

$xml = simplexml_load_string($x); // assuming XML in $x
echo $xml['fullName'];

看到它正常工作:http://codepad.viper-7.com/7KVHcU

答案 1 :(得分:0)

$xmlFile   = "http://www.domaine.com/city.xml";

$data      = simplexml_load_file($xmlFile);

print_r($data);