©
本文档使用 PHP中文网手册 发布
(PHP 5, PECL tidy >= 0.5.2)
tidy::cleanRepair -- tidy_clean_repair — Execute configured cleanup and repair operations on parsed markup
面向对象风格
过程化风格
$object
)
This function cleans and repairs the given tidy
object
.
object
The Tidy 对象。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 tidy::cleanrepair() example
<?php
$html = '<p>test</I>' ;
$tidy = tidy_parse_string ( $html );
$tidy -> cleanRepair ();
echo $tidy ;
?>
以上例程会输出:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html> <head> <title></title> </head> <body> <p>test</p> </body> </html>