(PHP 8 >= 8.4.0)
tidyNode::getNextSibling — Returns the next sibling node of the current node
Returns the next sibling node of the current node.
Diese Funktion besitzt keine Parameter.
Beispiel #1 tidyNode::getNextSibling() example
<?php
$html = <<< HTML
<html>
 <head>
 </head>
 <body>
  <p>Hello</p><p>World</p>
 </body>
</html>
HTML;
$tidy = tidy_parse_string($html);
$node = $tidy->body();
var_dump($node->child[0]->getNextSibling()->value);
?>Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
string(13) "<p>World</p> "
