SimpleXML 获取节点值
假设我有以下 XML 结构:
<?xml version="1.0" encoding="UTF-8"?>
<main>
<parent>
<child1>some value</child1>
<child2>another value</child2>
</parent>
</main>
我创建了一个 XML 变量,现在我想获取 child1 的值,因此我使用 SimpleXML:
$xml = new SimpleXMLElement($xml);
$this->xmlcode = (string) $xml->main->parent->child1;
但我收到此消息: 注意:尝试获取 /x 中非对象的属性.php on line x
我也用 $xml->parent->child1 尝试过,但没有成功。
有人吗??
Say I have this following XML structure:
<?xml version="1.0" encoding="UTF-8"?>
<main>
<parent>
<child1>some value</child1>
<child2>another value</child2>
</parent>
</main>
I made a variable of the XML and now I want to get the values of child1, so I use SimpleXML:
$xml = new SimpleXMLElement($xml);
$this->xmlcode = (string) $xml->main->parent->child1;
But I get this message: Notice: Trying to get property of non-object in /x.php on line x
I also tried it with $xml->parent->child1, but no success.
Anyone??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以在此处找到将 XPath 与 php 结合用于 SimpleXMLElement 的一个很好的示例
http://www.php.net/manual/en/class.simplexmlelement .php#95229
A good example of using XPath with php for the SimpleXMLElement can be found here
http://www.php.net/manual/en/class.simplexmlelement.php#95229
xpath 的变体(以及如何获取名称中带有破折号的节点的内容):
$node_value 的结果:
Variant for xpath (Also how to get content of node having dashes in name):
result of $node_value: