downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

tidyNode::hasChildren> <TidyNode
Last updated: Fri, 13 Nov 2009

view this page in

tidyNode::getParent

(PHP 5 >= 5.2.2)

tidyNode::getParentカレントノードの親ノードを返す

説明

tidyNode tidyNode::getParent ( void )

カレントノードの親ノードを返します。

例1 tidyNode::hasChildren() の例

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

返り値

そのノードが親を持っている場合に tidyNode、 それ以外の場合に NULL を返します。



add a note add a note User Contributed Notes
tidyNode::getParent
There are no user contributed notes for this page.

tidyNode::hasChildren> <TidyNode
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites