Home >php教程 >PHP源码 >使用 PHP 的 tidy_clean_repair() 对 HTML 内容进行清理和格式化

使用 PHP 的 tidy_clean_repair() 对 HTML 内容进行清理和格式化

PHP中文网
PHP中文网Original
2016-05-25 17:16:011431browse

php代码

<?php
      $options = array("indent" => true,       
                       "indent-spaces" => 4,   
                       "wrap" => 4096);        
      $tidy = tidy_parse_file("http://www.php.net/", $options);
      tidy_clean_repair($tidy);
      echo $tidy;
?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn