SimpleXML 节点名称中包含空格和等号
我有一个 xml 文档,其中节点名称中包含空格和等号。我正在尝试使用 SimpleXML 从这些节点中提取数据,但无论我尝试什么,它都会返回空白。
示例
<code><away>
<radio>url.here</radio>
<live bitrate="1">url.here</live>
<live bitrate="0">url.here</live>
</away></code>
我尝试使用echo "".$node->away->{'live bitrate="1"'}.""; 的 xml 文档 echo "".$node->away->{'live'}->{'bitrate="1"'}."";
I have an xml document that contains spaces and equal signs in the node names. I'm trying to use SimpleXML to extract the data from those nodes but it returns blank no matter what I try.
A sample of the xml document
<code><away>
<radio>url.here</radio>
<live bitrate="1">url.here</live>
<live bitrate="0">url.here</live>
</away></code>
I have tried using bothecho "<td>".$node->away->{'live bitrate="1"'}."</td>";
echo "<td>".$node->away->{'live'}->{'bitrate="1"'}."</td>";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我用来将 SimpleXML 对象转换为数组的函数:
Here is a function I use to convert the SimpleXML object to an array: