tidy::cleanRepair

tidy_clean_repair

(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)

tidy::cleanRepair -- tidy_clean_repair Effectue les opérations de nettoyage et de réparation préparées pour un fichier HTML

Description

Style orienté objet

publictidy::cleanRepair(): bool

Style procédural

tidy_clean_repair(tidy$tidy): bool

Nettoie et répare l'objet Tidy tidy passé en argument.

Liste de paramètres

tidy

L'objet Tidy

Valeurs de retour

Cette fonction retourne true en cas de succès ou false si une erreur survient.

Exemples

Exemple #1 Exemple avec tidy::cleanrepair()

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

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

echo
$tidy;
?>

L'exemple ci-dessus va afficher :

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

Voir aussi

To Top