<?php
//@功能 屏蔽掉黑帽SEO的搜索关键字
//@By 阳兄
function findNum($str=''){ //取出字符串里面的所有数字
$str=trim($str);
if(empty($str)){return '';}
$result='';
for($i=0;$i<strlen($str);$i++){
if(is_numeric($str[$i])){
$result.=$str[$i];
}
}
return $result;
}
$the_lnum=strlen(findNum($q));//获取数字
字符串长度
if($the_lnum>6){ //判断长度是否超过6 超过则直接301到搜索页面
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://".$_SERVER['HTTP_HOST']."/search.php");
exit();
}
?>