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

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyThe Tidy classtidy::html -- tidy_get_html

Ein Service von Reinhard Neidl - Webprogrammierung.

The Tidy class

<<tidy::head -- tidy_get_head

tidy::isXhtml -- tidy_is_xhtml>>

tidy::html

tidy_get_html

(PHP 5, PECL tidy 0.5.2-1.0.0)

tidy::html -- tidy_get_htmlReturns a tidyNode object starting from the <html> tag of the tidy parse tree

Beschreibung

Object oriented style

tidyNode tidy::html ( void )

Procedural style

tidyNode tidy_get_html ( tidy $object )

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

Parameter-Liste

object

The Tidy object.

Rückgabewerte

Returns the tidyNode object.

Beispiele

Beispiel #1 tidy::html() example

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

$tidy tidy_parse_string($html);

$html $tidy->html();
echo 
$html->value;
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

<html>
<head>
<title>test</title>
</head>
<body>
<p>paragraph</p>
</body>
</html>

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::head() - Returns a tidyNode object starting from the <head> 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",...)