Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 HTML 代码,来自使用所见即所得编辑器的用户。
我需要从标签<b ..><i ..><strong><p><a ..>中清理代码,并从所有主要的 js 代码中清理,比如 onclick 和其他。
<b ..><i ..><strong><p><a ..>
谢谢。
使用 strip_tags 从文本中删除 html。下面的例子。
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($text); echo "\n";