当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMNode hasChildNodes()用法及代码示例


DOMNode::hasChildNodes()函数是PHP中的内置函数,用于检查节点是否有子级。

用法:

bool DOMNode::hasChildNodes( void )

参数:此函数不接受任何参数。



返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

下面给出的程序说明了PHP中的DOMNode::hasChildNodes()函数:

程序1:

<?php 
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Create a paragraph element 
$element = $dom->createElement('p', 'GeeksforGeeks!'); 
  
// Append the child 
$dom->appendChild($element); 
  
// Check if child nodes are there 
if ($dom->hasChildNodes()) { 
    echo "Yes, child nodes are there."; 
} 
?>

输出:

Yes, child nodes are there.

程序2:

<?php 
// Create a new DOMDocument instance and keep it empty 
$dom = new DOMDocument(); 
  
// Check if child nodes are not there 
if (!$dom->hasChildNodes()) { 
    echo "No, child nodes are not there."; 
} 
?>

输出:

No, child nodes are not there.

参考: https://www.php.net/manual/en/domnode.haschildnodes.php




相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode hasChildNodes() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。