PHP Doku:: Checks if a node has children - tidynode.haschildren.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyThe TidyNode classtidyNode::hasChildren

Ein Service von Reinhard Neidl - Webprogrammierung.

The TidyNode class

<<tidyNode::getParent

tidyNode::hasSiblings>>

tidyNode::hasChildren

(PHP 5 >= 5.0.1)

tidyNode::hasChildrenChecks if a node has children

Beschreibung

bool tidyNode::hasChildren ( void )

Tells if the node has children.

Rückgabewerte

Returns TRUE if the node has children, FALSE otherwise.

Beispiele

Beispiel #1 tidyNode::hasChildren() example

<?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());

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(true)
bool(false)

Anmerkungen

Hinweis:

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


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)