PHP カスタム関数: すべての HTML タグを削除します
- function pregstring($str){
- $strtemp = trim($str);
- $search = array(
- "|| Uis ",
- "||Uis", // javascript
- を削除します "|[単語の定義].*[/単語の定義]|Uis", / / サムネイルを削除します
- "|<[/!].*?[^<>]*?>|Uis", // HTML タグを削除します
- " ">(quot|#34); ", // HTML エンティティを置換します
- ">(amp|#38);i",
- "|,|Uis",
- "|[s]{2,}|is",
- " [ >nbsp;]isu",
- "|[$]|Uis",
- );
- $replace = array(
- "",
- "",
- "",
- " ",
- " ",
- " ",
- " ",
- " ",
- " ",
- " ",
- );
- $text = preg_replace($search, $replace, $ strtemp) ;
- Return $text;
- }
- echo pregstring(string) //関数を呼び出す
- ?>
-
http://www.bkjia.com/PHPjc/486145.htmlwww.bkjia.com本当http://www.bkjia.com/PHPjc/486145.html技術記事 PHP カスタム関数: すべての HTML タグを削除しますか?php function pregstring($str){ $strtemp = trim($str); $search = array( "||Uis", "|script[^].*?/script| Uis ", // JavaScript を削除します "|[字定...