tidyNode::hasChildren

(PHP 5, PHP 7, PHP 8)

tidyNode::hasChildren Indique si le nœud a des enfants

Description

public tidyNode::hasChildren(): bool

Indique si le nœud courant a des enfants.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne true si le nœud a des enfants, false sinon.

Exemples

Exemple #1 Exemple avec tidyNode::hasChildren()

<?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 head
var_dump($tidy->html()->child[0]->hasChildren());

// Le PHP dans la balise head
var_dump($tidy->html()->child[0]->child[0]->hasChildren());

?>

L'exemple ci-dessus va afficher :

bool(true)
bool(false)

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top