tidyNode::getNextSibling

(PHP 8 >= 8.4.0)

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

Descripción

public tidyNode::getNextSibling(): ?tidyNode

Returns the next sibling node of the current node.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

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

Ejemplos

Ejemplo #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);

?>

El resultado del ejemplo sería:

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

Ver también

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top