tidyNode::getNextSibling
(PHP 8 >= 8.4.0)
tidyNode::getNextSibling — Returns the next sibling node of the current node
Descrição
Returns the next sibling node of the current node.
Parâmetros
Esta função não possui parâmetros.
Exemplos
Example #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);
?>
O exemplo acima produzirá:
string(13) "<p>World</p> "
Veja Também
- tidyNode::getParent() - Returns the parent node of the current node
- tidyNode::getPreviousSibling() - Returns the previous sibling node of the current node