downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

tidy::__construct> <tidy::body
Last updated: Fri, 14 Aug 2009

view this page in

tidy::CleanRepair

tidy_clean_repair

(PHP 5, 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 procédural

bool tidy_clean_repair ( tidy $object )

Style orienté objet

bool tidy::cleanRepair ( void )

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

Liste de paramètres

object

L'objet Tidy

Valeurs de retour

Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.

Exemples

Exemple #1 Exemple avec tidy::cleanrepair()

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

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

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



add a note add a note User Contributed Notes
tidy::CleanRepair
There are no user contributed notes for this page.

tidy::__construct> <tidy::body
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites