tidyNode::getPreviousSibling
PHP function
Edit on GitHub ✎
(PHP 8 >= 8.4.0)
Returns the previous sibling node of the current node
Description
tidyNode::getPreviousSibling(): tidyNode|null
Returns the previous sibling node of the current node.
Parameters Parameters
Return Values
Returns a tidyNode if the node has a previous sibling, or null otherwise.
Examples
tidyNode::getPreviousSibling() example
php
<?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[1]->getPreviousSibling()->value);
?>The above example will output:
output
string(13) "<p>Hello</p>
"