tidyNode::getParent

(PHP 5 >= 5.2.2, PHP 7, PHP 8)

tidyNode::getParent返回当前节点的父节点

描述

public tidyNode::getParent(): ?tidyNode

返回当前节点的父节点。

参数

此函数没有参数。

返回值

如果节点有父节点,则返回一个 tidyNode,否则返回 null

示例

示例 #1 tidyNode::getParent() 示例

<?php

$html
= <<< HTML
<html><head>
<?php echo '<title>title</title>'; ?>
<#
/* JSTE code */
alert('Hello World');
#>
</head>
<body>
Hello World
</body>
</html>

HTML;


$tidy = tidy_parse_string($html);
$num = 0;

$node = $tidy->html()->child[0]->child[0];

var_dump($node->getParent()->name);
?>

上面的示例将输出

string(4) "head"

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top