PHP children() 函數(shù)

2018-11-21 15:56 更新

PHP children() 函數(shù)

PHP SimpleXML 參考手冊(cè) PHP SimpleXML 參考手冊(cè)

實(shí)例

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

<?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>";
}
?>

運(yùn)行實(shí)例 ?

定義和用法

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


語法

children(ns,is_prefix);

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

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

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


更多實(shí)例

實(shí)例 1

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

<?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>";
}
?>

運(yùn)行實(shí)例 ?



PHP SimpleXML 參考手冊(cè) PHP SimpleXML 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)