tidyNode::getPreviousSibling
(PHP 8 >= 8.4.0)
tidyNode::getPreviousSibling — Returns the previous sibling node of the current node
Description
Returns the previous sibling node of the current node.
Parameters
This function has no parameters.
Examples
Example #1 tidyNode::getPreviousSibling() 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]->getPreviousSibling()->value);
?>The above example will output:
string(13) "<p>Hello</p> "
See Also
- tidyNode::getParent() - Returns the parent node of the current node
- tidyNode::getNextSibling() - Returns the next sibling node of the current node
↑ and ↓ to navigate • Enter to select • Esc to close • / to open