时时商务社区
标题:
PHP屏蔽过滤指定关键字的方法
[打印本页]
作者:
wx_pylelnL4
时间:
2018-2-14 05:53
本文实例讲述了PHP屏蔽过滤指定关键字的方法。分享给大家供大家参考。具体分析如下:
实现思路:
一、把关键字专门写在一个文本文件里,每行一个,数量不限,有多少写多少。
二、PHP读取关键字文本,存入一个数组
三、遍历关键字数组,挨个用strpos函数去看看内容有没有关键字,如果有,返回true,没有则返回false
PHP代码如下:
[U]复制代码[/U] 代码如下:/* PHP中用strpos函数过滤关键字 */
// 关键字过滤函数
function keyWordCheck($content){
// 去除空白
$content = trim($content);
// 读取关键字文本
$content = @file_get_contents('keyWords.txt');
// 转换成数组
$arr = explode("n", $content);
// 遍历检测
for($i=0,$k=count($arr);$i
例子2 (注:中文关键字过滤时使用的关键字文件为utf-8编码)
[U]复制代码[/U] 代码如下:/**
* 被禁止的关键字检测
*
* @param string $string 要检测的字符串
* @param string $fileName 屏蔽关键字文件
* @return bool
*/
function banwordCheck( $string, $fileName )
{
if ( !($words = file_get_contents( $fileName )) ){
die('file read error!');
}
$string = strtolower($string);
$matched = preg_match('/'.$words.'/i', $string, $result);
if ( $matched && isset($result[0]) && strlen($result[0]) > 0 )
{
if ( strlen($result[0]) == 2 ){
$matched = preg_match('/'.$words.'/iu', $string, $result);
}
if ( $matched && isset($result[0]) && strlen($result[0]) > 0 ) {
return true;
}else{
return false;
}
}else{
return false;
}
}
$content = '测试关键字';
if ( banwordCheck($content, './banwords.txt') ){
echo "matched! ";
}else{
echo "no match! ";
}
希望本文所述对大家的PHP程序设计有所帮助。
您可能感兴趣的文章:
php获取网页内容方法总结
php完全过滤HTML,JS,CSS等标签
php 安全过滤函数代码
php自动获取字符串编码函数mb_detect_encoding
php获取post中的json数据的实现方法
过滤掉PHP数组中的重复值的实现代码
php 如何获取数组第一个值
php获取数组长度的方法(有实例)
PHP对表单提交特殊字符的过滤和处理方法汇总
php过滤HTML标签、属性等正则表达式汇总
thinkphp3.x中变量的获取和过滤方法详解
php通过两层过滤获取留言内容的方法
欢迎光临 时时商务社区 (http://bbs.4435.cn/)
Powered by Discuz! X3.2