您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1307 复制当前网址

children



PHP children() 函数

定义和用法

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


语法

class SimpleXMLElement
{
string children(ns,is_prefix)
}


参数描述
ns可选。
is_prefix可选。默认是 false。


例子

XML 文件:

<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Dont forget the meeting!</body>
</note>

PHP 代码:

<?php
$xml = simplexml_load_file("test.xml");

foreach ($xml->children() as $child)
  {
  echo "Child node: " . $child;
  }
?>

输出类似:

Child node: George
Child node: John
Child node: Reminder
Child node: Dont forget the meeting!


文章来源:https://liqingbo.com/blog-789.html

上一篇:getDocNamespaces

下一篇:attributes

评论