方法1:php內建函式 strip_tags()除去HTML標籤
<?php header("content-type:text/html;charset=utf-8"); function strip_html_tags($str){ $pattern = '/<("[^"]*"|\'[^\']\*\'|[^>"\'])*>/'; return preg_replace($pattern,'',$str); } // 例項 $html = '<p id="">ddddd<br /></p>'; echo strip_tags($html); echo "\n"; $html = '<p id=">">bb<br />aaa<br /></p>'; echo stripl_tags($html); ?>
方法2:利用正則
如:
<?php header("content-type:text/html;charset=utf-8"); function strip_html_tags($str){ $pattern = '/<("[^"]*"|\'[^\']\*\'|[^>"\'])*>/'; return preg_replace($pattern,'',$str); } // 例項 $html = '<p id="">ddddd<br /></p>'; echo strip_html_tags($html); echo "\n"; $html = '<p id=">">bb<br />aaa<br /></p>'; echo strip_html_tags($html); ?>
更多:https://www.shanhubei.com/archives/55204.html