欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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

程序员文章站 2022-06-17 15:34:28
...
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;
?>