(PHP 8 >= 8.3.0)
DOMNode::isEqualNode — Checks that both nodes are equal
public DOMNode::isEqualNode(?DOMNode $otherNode): bool
Checks that both nodes are equal.
otherNodeThe node.
Example #1 DOMNode::isEqualNode() example
<?php
$dom1 = (new DOMDocument())->createElement('h1', 'Hello World!');
$dom2 = (new DOMDocument())->createElement('h1', 'Hello World!');
var_dump($dom1->isEqualNode($dom2));
?> The above example will output:
bool(true)
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/domnode.isequalnode.php