cleanhtml.php 872 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*
  3. * cleanhtml.php
  4. *
  5. * A simple script to clean and repair HTML,XHTML,PHP,ASP,etc. documents
  6. * if no file is provided, it reads from standard input.
  7. *
  8. * NOTE: Works only with tidy for PHP 4.3.x, for tidy in PHP 5 see cleanhtml5.php
  9. *
  10. * By: John Coggeshall <john@php.net>
  11. *
  12. * Usage: php cleanhtml.php [filename]
  13. *
  14. */
  15. if(!isset($_SERVER['argv'][1])) {
  16. $data = file_get_contents("php://stdin");
  17. tidy_parse_string($data);
  18. } else {
  19. tidy_parse_file($_SERVER['argv'][1]);
  20. }
  21. tidy_clean_repair();
  22. if(tidy_warning_count() ||
  23. tidy_error_count()) {
  24. echo "\n\nThe following errors or warnings occurred:\n";
  25. echo tidy_get_error_buffer();
  26. echo "\n";
  27. }
  28. echo tidy_get_output();
  29. ?>