PHP children() 函数

定义和用法

children() 函数获取指定节点的子节点。

语法

  1. class SimpleXMLElement
  2. {
  3. string children(ns,is_prefix)
  4. }
参数 描述
ns 可选。
is_prefix 可选。默认是 false。

例子

XML 文件:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <note>
  3. <to>George</to>
  4. <from>John</from>
  5. <heading>Reminder</heading>
  6. <body>Don't forget the meeting!</body>
  7. </note>

PHP 代码:

  1. <?php
  2. $xml = simplexml_load_file("test.xml");
  3.  
  4. foreach ($xml->children() as $child)
  5. {
  6. echo "Child node: " . $child;
  7. }
  8. ?>

输出类似:

  1. Child node: George
  2. Child node: John
  3. Child node: Reminder
  4. Child node: Don't forget the meeting!