学堂 学堂 学堂公众号手机端

PHP中children()函数有何用,具体怎样应用

lewis 6年前 (2019-04-17) 阅读数 12 #技术
今天就跟大家聊聊有关“PHP中children()函数有何用,具体怎样应用”的内容,可能很多人都不太了解,为了让大家认识和更进一步的了解,小编给大家总结了以下内容,希望这篇“PHP中children()函数有何用,具体怎样应用”文章能对大家有帮助。

PHP children() 函数

实例

查找 note 节点的子节点:


<?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()函数查找指定节点的子节点。

语法

children( _ns,is_prefix_ );

实例 1

查找 body 节点的子节点:

<?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中children()函数有何用,具体怎样应用”的相关知识,感谢各位的阅读,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注群英网络,小编每天都会为大家更新不同的知识。
版权声明

本文仅代表作者观点,不代表博信信息网立场。

热门