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
相关用法
- PHP DOMNode replaceChild()用法及代码示例
- PHP DOMNode getLineNo()用法及代码示例
- PHP DOMNode lookupNamespaceUri()用法及代码示例
- PHP DOMNode isDefaultNamespace()用法及代码示例
- PHP DOMNode hasAttributes()用法及代码示例
- PHP DOMNode normalize()用法及代码示例
- PHP DOMNode isSupported()用法及代码示例
- PHP DOMNode lookupPrefix()用法及代码示例
- PHP DOMNode C14N()用法及代码示例
- PHP DOMNode isSameNode()用法及代码示例
- PHP DOMNode insertBefore()用法及代码示例
- PHP DOMNode C14NFile()用法及代码示例
- PHP DOMNode getNodePath()用法及代码示例
- PHP DOMNode removeChild()用法及代码示例
- PHP DOMNode appendChild()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode hasChildNodes() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。