我有一个String,它从其他服务器动态获取其值。 字符串的值是
$string1 = '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.microsoft.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<AuthenticateUserResponse xmlns="http://microsoft.com/xml/namespace/2012/04">
<Authenticator>AE1001</Authenticator>
</AuthenticateUserResponse>
</soap:Body>
</soap:Envelope>';
我的问题是,通常我们使用* $ xml = simplexml_load_file(“test1.xml”); *来加载XML文件,但在我的要求中它是 String ,我怎么读这个String值并提取子节点及其值?例如:
<Authenticator> and its value "AE1001" ?
有没有办法将它放入数组?这样我很容易打印出它的节点值吗?
答案 0 :(得分:12)
还要了解DOMDocument和XPath。这真的值得花时间。
$doc = new DOMDocument;
$doc->loadXML($string1);
echo $doc->getElementsByTagName('Authenticator')->item(0)->nodeValue; // AE1001
答案 1 :(得分:1)
http://www.php.net/manual/de/function.simplexml-load-string.php
http://php.net/manual/de/book.simplexml.php
这有助于您找到问题的解决方案并解析您的xml。
答案 2 :(得分:0)