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

search for in the

tidyNode::hasChildren> <tidyNode
[edit] Last updated: Fri, 17 May 2013

view this page in

tidyNode::getParent

(PHP 5 >= 5.2.2)

tidyNode::getParentRetourne le noeud parent du noeud courant

Description

tidyNode tidyNode::getParent ( void )

Retourne le noeud parent du noeud courant.

Exemples

Exemple #1 Exemple avec tidyNode::hasChildren()

<?php

$html 
= <<< HTML
<html><head>
<?php echo '<title>title</title>'; ?>
<# 
  /* code JSTE  */
  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);
?>

L'exemple ci-dessus va afficher :

string(4) "head"

Valeurs de retour

Retourne un tidyNode si le noeud a un parent, ou NULL sinon.



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

 
show source | credits | stats | sitemap | contact | advertising | mirror sites