黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

PHP children() 函數(shù)

PHP children() 函數(shù)

PHP SimpleXML 參考手冊 PHP SimpleXML 參考手冊

實例

查找 note 節(jié)點的子節(jié)點:

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

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

運行實例 ?

定義和用法

children() 函數(shù)查找指定節(jié)點的子節(jié)點。

語法

children(ns,is_prefix);

參數(shù) 描述
ns 可選。規(guī)定一個 XML 命名空間。
is_prefix 可選。規(guī)定一個布爾值。如果值為 TRUE,則 ns 是前綴。如果值為 FALSE,則 ns 是命名空間 URL。

技術(shù)細節(jié)

返回值: 返回一個 SimpleXMLElement 對象。
PHP 版本: 5.0.1+
PHP 更新日志: 新增了 is_prefix 參數(shù)。

更多實例

實例 1

查找 body 節(jié)點的子節(jié)點:

<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body><span>Important!</span> Don't forget me this weekend!</body>
</note>
XML;

$xml=simplexml_load_string($note);
foreach ($xml->body[0]->children() as $child)
{
echo "Child node: " . $child . "<br>";
}
?>

運行實例 ?


PHP SimpleXML 參考手冊 PHP SimpleXML 參考手冊
相關(guān)文章