gpt4 book ai didi

php - Simplexml_load_string($string) 返回一个空对象但 $string 包含 xml?下面的代码

转载 作者:数据小太阳 更新时间:2023-10-29 01:40:55 31 4
gpt4 key购买 nike

我使用 cURL 以 xml 格式检索一些信息。

....

$xml = curl_exec($ch);

$data = simplexml_load_string($xml);
print_r($data);
//out put - SimpleXMLElement Object ( )

如果我尝试 - print_r($xml); 并查看页面源代码我明白了

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns7:users xmlns="http://www.example.com/xml/ns/rs"
xmlns:ns2="http://www.example.com/xml/ns/users"
xmlns:ns3="http://www.example.com/2004/11/tHistory"
xmlns:ns4="http://www.example.com/fsi/tHistory"
xmlns:ns5="http://www.example.com/2005/10/tHistory"
xmlns:ns6="http://www.example.com/2010/03/cs"
xmlns:ns7="http://www.example.com/2005/10/users"
xmlns:ns8="http://www.example.com/2010/03/tHistory">
<ns7:user><ns7:id>Matt.Smith</ns7:id>
<ns7:lastName>Smith</ns7:lastName>
<ns7:firstName>Matt</ns7:firstName>
<ns7:otherName></ns7:otherName>
<ns7:gender>male</ns7:gender>
<ns7:email>matt@company.co.uk</ns7:email>
<ns7:locale>en</ns7:locale>
<ns7:role><ns7:id>A</ns7:id>
<ns7:name>System Administrator</ns7:name></ns7:role>
<ns7:employeeNumber></ns7:employeeNumber>
<ns7:organization>
<ns7:id>8000</ns7:id>
<ns7:name>Organisation Title</ns7:name>
</ns7:organization>
<ns7:organization>
<ns7:id>20707</ns7:id>
<ns7:name>London Office</ns7:name>
</ns7:organization>
<ns7:attribute>
<ns7:code>0</ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
<ns7:attribute>
<ns7:code>0</ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
<ns7:attribute>
<ns7:code></ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
<ns7:attribute>
<ns7:code></ns7:code>
<ns7:description>Unassigned</ns7:description></ns7:attribute>
<ns7:attribute><ns7:code></ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
<ns7:attribute>
<ns7:code></ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
<ns7:attribute>
<ns7:code></ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
<ns7:attribute>
<ns7:code></ns7:code>
<ns7:description>Unassigned</ns7:description>
</ns7:attribute>
</ns7:user>
</ns7:users>

这个 xml 全部在一行中,我手动输入了换行符以使其可读。

最佳答案

更新:要打印名字(或任何其他),您可以使用 the usual SimpleXML addressing mechanisms .您的情况有点复杂,因为您使用的是 namespace 。虽然仍然可行 - 尝试一些东西 like this :

$data->children('ns7', true)->user[0]->lastName

回复:我期望 print_r($data) 像数组一样打印 [...]:这种期望是错误的。它肯定会很方便,但它不是这样工作的。要打印 SimpleXML 对象的 xml 字符串表示,请使用 asXML() .

更新结束

您希望 print_r($data) 打印什么? SimpleXMLElement Object ( ) 对我来说似乎是完全有效的输出。这并不意味着 xml 有问题。如果您想查看 SimpleXMLElement 对象的实际 xml,请尝试 print $data->asXML()

关于php - Simplexml_load_string($string) 返回一个空对象但 $string 包含 xml?下面的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3165048/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com