tidyNode::getNextSibling

(PHP 8 >= 8.4.0)

tidyNode::getNextSiblingReturns the next sibling node of the current node

説明

public tidyNode::getNextSibling(): ?tidyNode

Returns the next sibling node of the current node.

パラメータ

この関数にはパラメータはありません。

戻り値

Returns a tidyNode if the node has a next sibling, or null otherwise.

例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);

?>

上の例の出力は以下となります。

string(13) "<p>World</p>
"

参考