如何用PHP修复脏的HTML代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用PHP修复脏的HTML代码相关的知识,希望对你有一定的参考价值。

This php class lets you clean and repair html code. WHAT IT DOES: delete closed tags without their opening tag, fix open tag without close, closing them automatically, check bad nesting and fix them, fix bad quotes in attributes, merge different styles attributes in the same tag, remove html comments, remove empty tags and more bad tags.
  1. /*
  2.   download the class from:
  3.   http://www.barattalo.it/html-fixer/
  4. */
  5.  
  6. $dirty_html = ".....bad html here......";
  7.  
  8. $a = new HtmlFixer();
  9. $clean_html = $a->getFixedHtml($dirty_html);

以上是关于如何用PHP修复脏的HTML代码的主要内容,如果未能解决你的问题,请参考以下文章

如何用HTML写代码实现自动播放音乐

如何用 C++ 编写这个 php 代码

如何用php程序主动向html页面发送信息?

如何用PHP控制文件上传类型?如*.jpg.

如何用 PHP 制作一个简单的登录系统? [关闭]

如何用PHP和html做一个附件上传的页面?