我們為大家收集整理了關於php過濾html標簽,以方便大家參考。
<?php
$str = preg_replace( "@<script(.*?)</script>@is", "", $str );
$str = preg_replace( "@<iframe(.*?)</iframe>@is", "", $str );
$str = preg_replace( "@<style(.*?)</style>@is", "", $str );
$str = preg_replace( "@<(.*?)>@is", "", $str );
?>
希望大家可以學會php過濾html標簽想了解更多精彩內容,請關注我們的網站!
相關推薦:
js去掉html標簽樣式