PHP站内搜索功能 带字符串高亮提示
作者:bea
分享使用PHP开发网站内搜索功能,并对搜索的字符串进行高亮提示。 将sql语句中包含的%$info%交给DBMS执行的时候,他会查找字段中含有变量$info的值的信息。 require_once 'sqlTools.class.php';//封装类,可执行dql、dml语句 $info=$_POST['info']; $sql="select name,password,email from user_500 where name lik
分享使用PHP开发网站内搜索功能,并对搜索的字符串进行高亮提示。
将sql语句中包含的%$info%交给DBMS执行的时候,他会查找字段中含有变量$info的值的信息。require_once 'sqlTools.class.php';//封装类,可执行dql、dml语句
$info=$_POST['info'];
$sql="select name,password,email from user_500 where name like '%$info%' or password like '%$info%' or email like '%$info%'";
$sqlTools=new SqlTools();
$res=$sqlTools->execute_dql($sql);
while ($row=mysql_fetch_assoc($res)){
$row['name']=preg_replace("/($info)/i","\\1",$row['name']);
$row['password']=preg_replace("/($info)/i","\\1",$row['password']);
$row['email']=preg_replace("/($info)/i","\\1",$row['email']);
echo $row['name']."-->".$row['password']."-->".$row['email']."
";
}
?>
思路分析:
将sql语句中包含的%$info%交给DBMS执行的时候,他会查找字段中含有变量$info的值的信息,
%$info--->查找以$info的值结束的信息
$info%--->查找以$info的值开头的信息
通过正则函数preg_replace()将搜索到的关键字高亮显示,比如,
$row['name']=preg_replace("/($info)/i","\\1",$row['name']);
的意思是:通过POST方接收到的值$info替换为加上样式(红色加粗)的结果,并将结果重新赋给$row[‘name']
如果要搜索多个关键字的话,可以对接收到值$info进行分割,比如$info_more=explode(" ",$info);//这种方式能对以空格隔开的关键字进行分割,再对分割后的结果挨个进行查询,同样,可以使用正则表达式函数进行替换工作,以高亮关键字提示。
sqlTools.class.php的源代码:
class SqlTools{
private $host="localhost";
private $dbname="test";
private $dbuser="root";
private $dbpwd="";
private $conn;
public function __construct(){
$this->conn=mysql_connect($this->host,$this->dbuser,$this->dbpwd);
if(!$this->conn){
die("连接数据库失败".mysql_error());
}
mysql_select_db($this->dbname,$this->conn) or die("找不到该数据库".mysql_error());
mysql_query("set names utf8");
}
public function execute_dml($sql){
$bool=mysql_query($sql);
if ($bool){
if ($bool>0) {
return 1;
}else{
return 2;
}
}else {
return 0;
}
}
public function execute_dql($sql){
$res=mysql_query($sql);
return $res;
}
public function close_conn(){
mysql_close($this->conn);
}
}
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP面试题,PHP程序员面试题及答案
- zend studio中文版 zend studio汉化大全
- ftp服务器软件ftp上传下载工具推荐
- 防SQL注入攻击和防SQL注入原理以及漏洞
- PHP获取文件后缀名
- PHP双引号、单引号的作用和区别
- PHP网站开发如今流行的几点原因
- 教你快速寻找PHP资料小诀窍
- php 密码加密 给密码字符串加密
- 大家编程用的什么字体哪种字体最好看
- 配置PHP PHP安全配置详解
- PHP安全配置文件php.ini的安全配置
- Kindeditor漏洞 编辑代码内容被执行
- 推荐几个好用的PHP集成开发环境
- 过滤和检查IP地址的PHP实现代码
- notepad++设置字体和字体大小
- PHP学习之初级正则表达式资料
- 修改Apache默认端口等配置信息
- 301重定向如何做?301重定向方法总结