update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the parent node of the current node

tidyNode::getParent

(PHP 5 >= 5.2.2)

tidyNode::getParentReturns the parent node of the current node

설명

tidyNode tidyNode::getParent ( void )

Returns the parent node of the current node.

예제

Example #1 tidyNode::hasChildren() example

<?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"

반환값

Returns a tidyNode if the node has a parent, or NULL otherwise.