PHP children() 函數(shù)
PHP children() 函數(shù)
實例
查找 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>";
}
?>
$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>";
}
?>
$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>";
}
?>
運行實例 ?

相關(guān)文章
- PHP 語法
- PHP 數(shù)據(jù)類型
- PHP 命名空間 namespace
- PHP array_change_key_case() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP natsort() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP reset() 函數(shù)
- PHP uasort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP FTP 函數(shù)
- PHP 雜項 函數(shù)