使用 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; ?>