PHP Doku:: Returns a tidyNode object starting from the <head> tag of the tidy parse tree - tidy.head.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyThe Tidy classtidy::head -- tidy_get_head

Ein Service von Reinhard Neidl - Webprogrammierung.

The Tidy class

<<tidy::getStatus -- tidy_get_status

tidy::html -- tidy_get_html>>

tidy::head

tidy_get_head

(PHP 5, 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

Object oriented style

tidyNode tidy::head ( void )

Procedural style

tidyNode tidy_get_head ( tidy $object )

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

Parameter-Liste

object

The Tidy object.

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>

Anmerkungen

Hinweis: Diese Funktion wird nur von der Zend Engine 2 (PHP >= 5.0.0) unterstützt.

Siehe auch

  • tidy::body() - Returns a tidyNode object starting from the <body> tag of the tidy parse tree
  • tidy::html() - Returns a tidyNode object starting from the <html> tag of the tidy parse tree

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",...)