ホームページ >バックエンド開発 >PHPチュートリアル >PHP センシティブワードフィルタリング

PHP センシティブワードフィルタリング

WBOY
WBOYオリジナル
2016-06-23 13:27:371143ブラウズ

$f = file('words.txt');$words = array();foreach ($f as $w) {	$words[] = preg_quote(trim($w), '/');}$text = file_get_contents('text.txt');$start = microtime(true);$reg = '/' . implode('|', $words) . '/S';preg_match_all($reg, $text, $m);$result = array();$total = 0;foreach ($m[0] as $w) {	if (!isset($result[$w])) {		$result[$w] = 1;	} else {		$result[$w]++;	}	$total++;}$end = microtime(true);echo $end - $start, "\n";echo $total, "\n";print_r($result);

words.txt に av を追加

text.txt に have を追加

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。