问题描述截图:
文本编辑器(editplus)打开文件目录:include/helpers/filter.helper.php 查找:
if(preg_match("/[^0-9a-z@#\.]/",$keyword[$i]))
{
$restr .= ' ';
}
else
{
$restr .= $keyword[$i];
}
}
}
}
return $restr;
}
}
改成
if(preg_match("/[^0-9a-zA-Z@#.]/",$keyword[$i]))
{
$restr .= ' ';
}
else
{
$restr .= $keyword[$i];
}
}
}
}
return $restr;
}
}
完成后:
实际就是加了个正则规则
if(preg_match("/[^0-9a-zA-Z@#.]/",$keyword[$i]))