PHP中如何编写敏感字过滤的代码?

更新于
2026-09-26 05:04:48
0阅读来源:SEO问题
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计92个文字,预计阅读时间需要1分钟。

PHP中如何编写敏感字过滤的代码?

php打开文件并读取内容,存储关键词,然后使用正则表达式匹配文本中的关键词。

PHP中如何编写敏感字过滤的代码?

$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);

本文共计92个文字,预计阅读时间需要1分钟。

PHP中如何编写敏感字过滤的代码?

php打开文件并读取内容,存储关键词,然后使用正则表达式匹配文本中的关键词。

PHP中如何编写敏感字过滤的代码?

$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);