我有这个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=""/>
答案 0 :(得分:4)
使用simplexml
:
$xml = simplexml_load_string($x); // assuming XML in $x
echo $xml['fullName'];
答案 1 :(得分:0)
$xmlFile = "http://www.domaine.com/city.xml";
$data = simplexml_load_file($xmlFile);
print_r($data);