PHP | DOMNode hasChildNodes()函数
DOMNode::hasChildNodes()函数是PHP中的一个内置函数,用于检查节点是否有子节点。
句法:
bool DOMNode::hasChildNodes( void )
参数:此函数不接受任何参数。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
下面给出的程序说明了PHP中的DOMNode::hasChildNodes()函数:
方案一:
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.
方案二:
hasChildNodes()) {
echo "No, child nodes are not there.";
}
?>
输出:
No, child nodes are not there.
参考: https://www. PHP.net/manual/en/domnode.haschildnodes。 PHP