PHP 8.4.0 RC4 available for testing

tidyNode::getPreviousSibling

(PHP 8 >= 8.4.0)

tidyNode::getPreviousSiblingReturns the previous sibling node of the current node

Опис

public tidyNode::getPreviousSibling(): ?tidyNode

Returns the previous sibling node of the current node.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

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

Приклади

Приклад #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);

?>

Поданий вище приклад виведе:

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

Прогляньте також

add a note

User Contributed Notes

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