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

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyThe Tidy classtidy::body -- tidy_get_body

Ein Service von Reinhard Neidl - Webprogrammierung.

The Tidy class

<<The Tidy class

tidy::cleanRepair -- tidy_clean_repair>>

tidy::body

tidy_get_body

(PHP 5, PECL tidy 0.5.2-1.0)

tidy::body -- tidy_get_bodyReturns a tidyNode object starting from the <body> tag of the tidy parse tree

Beschreibung

Object oriented style

tidyNode tidy::body ( void )

Procedural style

tidyNode tidy_get_body ( tidy $object )

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

Parameter-Liste

object

The Tidy object.

Rückgabewerte

Returns the detected HTML version.

Warnung

This function is not yet implemented in the Tidylib itself, so it always return 0.

Beispiele

Beispiel #1 tidy::getBody() example

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

$tidy tidy_parse_string($html);

$body $tidy->Body();
echo 
$body->value;
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

<body>
<p>paragraph</p>
</body>

Anmerkungen

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

Siehe auch

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