tidyNode::hasChildren

(PHP 5 >= 5.0.1, PHP 7)
Checks if a node has children
bool tidyNode::hasChildren ( void )

Tells if the node has children.

Returns:

Returns TRUE if the node has children, FALSE otherwise.

Notes:

This function was named tidy_node::has_children() in PHP 4/Tidy 1.

Examples:
tidyNode::hasChildren() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
 
$html = <<< HTML
<html><head>
<?php echo '<title>title</title>'; ?>
<# 
  /* JSTE code */
  alert('Hello World'); 
#>
</head>
<body>
 
<?php
  // PHP code
  echo 'hello world!';
?>
 
<%
  /* ASP code */
  response.write("Hello World!")
%>
 
<!-- Comments -->
Hello World
</body></html>
Outside HTML
HTML;
 
 
$tidy = tidy_parse_string($html);
$num = 0;
 
// the head tag
var_dump($tidy->html()->child[0]->hasChildren());
 
// the php inside the head tag
var_dump($tidy->html()->child[0]->child[0]->hasChildren());
 
?>

The above example will output:

bool(true)
bool(false)
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.