mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
16 lines
346 B
PHP
16 lines
346 B
PHP
--TEST--
|
|
tidyNode::getParent()
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("tidy")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$x = tidy_parse_string("<body><div>Content</div></body>");
|
|
var_dump($x->body()->child[0]->name);
|
|
var_dump($x->body()->child[0]->getParent()->name);
|
|
var_dump($x->root()->getParent());
|
|
?>
|
|
--EXPECT--
|
|
string(3) "div"
|
|
string(4) "body"
|
|
NULL
|