tidyNode::hasSiblings

(PHP 5, PHP 7)

tidyNode::hasSiblings Indique si le noeud a des frères

Description

public tidyNode::hasSiblings ( void ) : bool

Indique si le noeud courant a des noeuds frères.

Valeurs de retour

Retourne TRUE si le noeud a des frères, FALSE sinon.

Exemples

Exemple #1 Exemple avec tidyNode::hasSiblings()

<?php

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

<?php
  // code PHP 
  echo 'hello world!';
?>

<%
  /* code ASP  */
  response.write("Hello World!")
%>

<!-- Comments -->
Hello World
</body></html>
Outside HTML
HTML;


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

// La balise html
var_dump($tidy->html()->hasSiblings());

// La balise head
var_dump($tidy->html()->child[0]->hasSiblings());

?>

L'exemple ci-dessus va afficher :

bool(false)
bool(true)