PHP Doku:: Execute configured cleanup and repair operations on parsed markup - tidy.cleanrepair.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyThe Tidy classtidy::cleanRepair -- tidy_clean_repair

Ein Service von Reinhard Neidl - Webprogrammierung.

The Tidy class

<<tidy::body -- tidy_get_body

tidy::__construct>>

tidy::cleanRepair

tidy_clean_repair

(PHP 5, PECL tidy >= 0.5.2)

tidy::cleanRepair -- tidy_clean_repairExecute configured cleanup and repair operations on parsed markup

Beschreibung

Object oriented style

bool tidy::cleanRepair ( void )

Procedural style

bool tidy_clean_repair ( tidy $object )

This function cleans and repairs the given tidy object.

Parameter-Liste

object

The Tidy object.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #1 tidy::cleanrepair() example

<?php
$html 
'<p>test</I>';

$tidy tidy_parse_string($html);
$tidy->cleanRepair();

echo 
$tidy;
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<p>test</p>
</body>
</html>

Siehe auch


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