DOMNode::isSameNode()函数是PHP中的内置函数,它指示两个节点是否是同一节点。
用法:
bool DOMNode::isSameNode( DOMNode $node )
参数:该函数接受单个参数$node,该参数保存要比较的节点。
返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。
下面给出的程序说明了PHP中的DOMNode::isSameNode()函数:
程序1:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Create a paragraph element with a namespace
$p_element = $dom->createElementNS(
'my_namespace', 'p', 'GeeksforGeeks');
// Append the child to DOMDocument
$dom->appendChild($p_element);
// Check if the node is same
$isSameNode = $dom->isSameNode($dom);
// Check if the namespace is default or not
if($isSameNode) {
echo 'Yes, $dom is same to itself.';
}
?>
输出:
Yes, $dom is same to itself.
程序2:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Create a paragraph element with a namespace
$p_element = $dom->createElementNS(
'my_namespace', 'p', 'GeeksforGeeks');
// Append the child to DOMDocument
$dom->appendChild($p_element);
// Create another new DOMDocument instance
$dom2 = new DOMDocument();
// Check if nodes are same
$isSameNode = $dom->isSameNode($dom2);
// Check if the namespace is default or not
if(!$isSameNode) {
echo 'No, $dom and $dom2 are different.';
}
?>
输出:
No, $dom and $dom2 are different.
参考: https://www.php.net/manual/en/domnode.issamenode.php
相关用法
- PHP DOMNode hasAttributes()用法及代码示例
- PHP DOMNode getNodePath()用法及代码示例
- PHP DOMNode removeChild()用法及代码示例
- PHP DOMNode normalize()用法及代码示例
- PHP DOMNode C14N()用法及代码示例
- PHP DOMNode cloneNode()用法及代码示例
- PHP DOMNode C14NFile()用法及代码示例
- PHP DOMNode getLineNo()用法及代码示例
- PHP DOMNode isSupported()用法及代码示例
- PHP DOMNode lookupPrefix()用法及代码示例
- PHP DOMNode lookupNamespaceUri()用法及代码示例
- PHP DOMNode isDefaultNamespace()用法及代码示例
- PHP DOMNode hasChildNodes()用法及代码示例
- PHP DOMNode insertBefore()用法及代码示例
- PHP DOMNode appendChild()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode isSameNode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。