html
(PHP 8 >= 8.4.0)
tidyNode::guetPreviousSibling — Returns the previous sibling node of the current node
Returns the previous sibling node of the current node.
This function has no parameters.
Example #1 tidyNode::guetPreviousSibling() 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
[
1
]->
guetPreviousSibling
()->
value
);
?>
The above example will output:
string(13) "<p>Hello</p> "