PHP children() 函数


实例

查找 note 节点的子节点:

  1. <?php
  2. $note=<<<XML
  3. <note>
  4. <to>Tove</to>
  5. <from>Jani</from>
  6. <heading>Reminder</heading>
  7. <body>Don't forget me this weekend!</body>
  8. </note>
  9. XML;
  10.  
  11. $xml=simplexml_load_string($note);
  12. foreach ($xml->children() as $child)
  13. {
  14. echo "Child node: " . $child . "<br>";
  15. }
  16. ?>
  1. Child node: Tove
  2. Child node: Jani
  3. Child node: Reminder
  4. Child node: Don't forget me this weekend!

定义和用法

children() 函数查找指定节点的子节点。

语法

  1. children(ns,is_prefix);


参数描述
ns可选。规定一个 XML 命名空间。
is_prefix可选。规定一个布尔值。如果值为 TRUE,则 ns 是前缀。如果值为 FALSE,则 ns 是命名空间 URL。

技术细节

返回值:返回一个 SimpleXMLElement 对象。
PHP 版本:5.0.1+
PHP 更新日志:新增了 is_prefix 参数。

更多实例

实例 1

查找 body 节点的子节点:

  1. <?php
  2. $note=<<<XML
  3. <note>
  4. <to>Tove</to>
  5. <from>Jani</from>
  6. <heading>Reminder</heading>
  7. <body><span>Important!</span> Don't forget me this weekend!</body>
  8. </note>
  9. XML;
  10.  
  11. $xml=simplexml_load_string($note);
  12. foreach ($xml->body[0]->children() as $child)
  13. {
  14. echo "Child node: " . $child . "<br>";
  15. }
  16. ?>


  1. Child node: Important!