array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'tidy.head.php', 1 => 'tidy::head', 2 => 'Returns a tidyNode object starting from the <head> tag of the tidy parse tree', ), 'up' => array ( 0 => 'class.tidy.php', 1 => 'tidy', ), 'prev' => array ( 0 => 'tidy.getstatus.php', 1 => 'tidy::getStatus', ), 'next' => array ( 0 => 'tidy.html.php', 1 => 'tidy::html', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/tidy/tidy/head.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

tidy::head

tidy_get_head

(PHP 5, PHP 7, PHP 8, PECL tidy 0.5.2-1.0.0)

tidy::head -- tidy_get_headReturns a tidyNode object starting from the <head> tag of the tidy parse tree

Beschreibung

Objektorientierter Stil

public tidy::head(): ?tidyNode

Prozeduraler Stil

tidy_get_head(tidy $tidy): ?tidyNode

Returns a tidyNode object starting from the <head> tag of the tidy parse tree.

Parameter-Liste

tidy

Das Tidy Objekt.

Rückgabewerte

Returns the tidyNode object.

Beispiele

Beispiel #1 tidy::head() example

<?php
$html
= '
<html>
<head>
<title>test</title>
</head>
<body>
<p>paragraph</p>
</body>
</html>'
;

$tidy = tidy_parse_string($html);

$head = $tidy->head();
echo
$head->value;
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

<head>
<title>test</title>
</head>

Siehe auch