打印所有节点 SimpleXML

发布于 2024-12-09 14:36:44 字数 744 浏览 1 评论 0原文

这是我的第一个 xml 解析器脚本。 我的代码:

<?php
$xmlstring = "
<book>
    <note>
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>
    </note>
    <note>
    <to>Tove1</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>
    </note>
</book>
";

$xml = new SimpleXMLElement($xmlstring);
foreach($xml->note as $note){
    echo $note["to"] . $note["from"] . $note["heading"] . $note["body"];
}
?>

我想打印 note 孩子们。但这段代码不打印任何内容.. 问题出在哪里?

谢谢...

It's my first xml parser script.
My code:

<?php
$xmlstring = "
<book>
    <note>
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>
    </note>
    <note>
    <to>Tove1</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>
    </note>
</book>
";

$xml = new SimpleXMLElement($xmlstring);
foreach($xml->note as $note){
    echo $note["to"] . $note["from"] . $note["heading"] . $note["body"];
}
?>

i want to print note children. but this code doesn't print anything ..
Where is the problem?

Thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

迷路的信 2024-12-16 14:36:44

note 是一个 SimpleXMLObject。因此,您需要指针(箭头)表示法而不是数组(括号)表示法。

foreach($xml->note as $note){
    echo $note->to . $note->from . $note->heading . $note->body;
}

note is a SimpleXMLObject. So you would need to pointer (arrow) notation not array (bracket) notation.

foreach($xml->note as $note){
    echo $note->to . $note->from . $note->heading . $note->body;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文