SimpleXML 获取节点值

发布于 2024-10-31 16:54:18 字数 554 浏览 3 评论 0原文

假设我有以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清风无影 2024-11-07 16:54:19
$xml = new SimpleXMLElement($xml);
$this->xmlcode = (string) $xml->parent[0]->child1;
$xml = new SimpleXMLElement($xml);
$this->xmlcode = (string) $xml->parent[0]->child1;
花之痕靓丽 2024-11-07 16:54:19

可以在此处找到将 XPath 与 php 结合用于 SimpleXMLElement 的一个很好的示例
http://www.php.net/manual/en/class.simplexmlelement .php#95229

// Find the topmost element of the domDocument
$xpath = new DOMXPath($xml);
$child1 = $xpath->evaluate('/main/parent/child1')->item(0); 

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

// Find the topmost element of the domDocument
$xpath = new DOMXPath($xml);
$child1 = $xpath->evaluate('/main/parent/child1')->item(0); 
断舍离 2024-11-07 16:54:19

xpath 的变体(以及如何获取名称中带有破折号的节点的内容):

 <主要>
<父>
    某个值
    另一个值
 
$xml = simplexml_load_string($content);
$node_value= (string)$xml->xpath('parent/child-1')[0];

$node_value 的结果:

“一些价值”

Variant for xpath (Also how to get content of node having dashes in name):

<?xml version="1.0" encoding="UTF-8"?> <main>
<parent>
    <child-1>some value</child-1>
    <child-2>another value</child-2>
</parent> </main>
$xml = simplexml_load_string($content);
$node_value= (string)$xml->xpath('parent/child-1')[0];

result of $node_value:

"some value"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文