tidy_clean_repair

(no version information, might be only in CVS)

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

Description

bool tidy_clean_repair ( resource tidy)

Cette fonction nettoie et répare la resource tidy passée en argument.

Exemple 1. Exemple avec tidy_clean_repair()

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

$tidy = tidy_parse_string($html);
tidy_clean_repair($tidy);

echo
$tidy;
?>

Cet exemple va afficher :

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

Voir aussi tidy_repair_file() et tidy_repair_string().