首页 > 作文

PHP模糊查询技术实例分析【附源码下载】

更新时间:2023-04-06 14:59:01 阅读: 评论:0

本文实例讲述了php模糊查询技术。分享给大家供大家参考,具体如下:

简介

从本质上揭密php模糊查询技术

功能

根据输入的关键字查找相关用户

php用户查询器案例分析

课程目标

掌握php模糊技术的应用

课程重点

php模糊查询的语法php模糊查询的应用

课程案例(效果图)

数据库设计

用户表(ur):

create table ur(  `uid` int(10) auto_increment primary key comment '用户id',  `urname` varchar(30) not null default '' comment '用户名',  `password` varchar(6) not null default '' comment '密码',  `x` char(2) not null default '保密' comment '性别',  `email` varchar(40) not null default '' comment '邮箱',  `hobby` varchar(255) not null default '' comment '兴趣爱好',  key `urname`(`urname`)//索引)engine=myisam default chart=utf8 comment='用户表'

索引的好处:

如果按照某个条件去检索数据,如果这个条件字段没有建立索引,查询的时候是会遍历整张表,如果你建立了索引,查询的时候就会根据索引来查询,进而提高查询性能

mysql模糊查询语法

sql匹配模式(开发中应用最多的一种)正则表达式匹配模式

sql匹配模式

使用sql匹配模式,不能使用操作符=或者!=,而是使用操作符like或者not like使用sql匹配模式,mysql提供两种通配符:
①%表示任意数量的任意字符(其中包含0个)
②_表示的任意单个字符使用sql匹配模式,如果匹配格式中不包含以上两种通配符的任意一个,其查询效果等同于=或者!=使用sql匹配模式,默认情况下不区分大小写

代码实现:

lect * from ur where urname like 'l%';lect * from ur where urnam网站规划e like '%e';lect * from ur where urname like '%o%';lect * from ur where urname like '___';//三个_,表示urname为三个字符的结果集lect * from ur where urname like '_o%';//第二个字符为o

正则表达式匹配模式

. 匹配任意单个字符* 匹配0个或多个在他前面的字符三年级数学

eg:x师说原文及翻译* 表示匹配任何数量的x字符

[] 匹配括号中的任意字符

eg:[abc] 匹配字符a、b后者c
[a-z] 匹配任何字母
[0-9] 匹配任何数字
[0-9]* 匹配任何数量的任何数字
[a-z]* 匹配任何数量的任何字母

^ 表示以某个字符或者字符串开头

eg:^a 表示以字母a开头

$ 表示已某个字符或者字符串结果

eg:s$ 表示以字母s结尾

使用正则表达式匹配模式使用的操作符:regexp(rlike) 或者not regexp(not rlike)

code:

lect * from ur where urname regexp '^l';lect * from ur where urname regexp '...';

ps:如果仅使用.通配符,有几个点通配符,假设n个,那么匹配模式表示大于等于n个

精确字符数

^…$ //表示只能为三个字符
lect * from ur where urname regexp ‘^…$’;

案例

开发流程

源码分析

<?php//关键字$keywords = ist($_post['keywords'])?$_post['keywords']:'';//连接数据库,php7废弃了mysql_connect推荐使用mysqli_connect$link = mysqli_connect(  "localhost:3306",  "root",  "root",  "mook");if(!empty($keywords)){  $sql = "lect * from ur where urname like '%{$keywords}%' ";}el{  $sql = "lect * from ur";}$ursarr = [];$result = $link->query($sql);while($row = $result->fetch_assoc()){  //简单高亮显示  // $row['urname'] = str_replace($keywords, "<font color='red'>".$keywords."</font>",$row['urname']);  //高亮显示,不区分关键字的大小写  $urnamearr = preg_split('/(?<!^)(?!$)/u',$row['urname']);  foreach ($urnamearr as $key => $value) {    if(strtoupper($keywords) == strtoupper($value)){      $urnamearr[$key] = "<font color='red'>".$value."</font>";    }  }  $row['urname'] = join($urnamearr);  $ursarr[] = $row;}?><!doctype html><html><head>  <meta chart="utf-8">  <title>php用户查询器</title></head><body>  <h1>php模糊查询</h1>  <form action="index.php" method="post">    用户名:<input type="text" name="keywords" value="" />    <input type="submit" value="提交查询" />  </form>  <?php    if(!empty($keywords)){      echo "查询关键词:<font color='red'>".$keywords."</font>结果!";    }    $tablestring = "<table width='500' border='1' cellpadding='5'>";    $tablestring .= "<tr bgcolor='orange'><th>用户名</th><th>邮箱</th><th>性别</th></tr>";    if(!empty($ursarr)){      foreach ($ursarr as $key => $value) {        $tablestring .= "<tr><td>" . $value['urname']. "</td><td>" . $value['email'] . "</td><td>".$value['x']."</td></tr>";      }    }el{      $tablestring .="<tr><td colspan='3'>没有数据</td></tr>";    }    $tablestring .= "</table>";    echo $tablconfu名词estring;  ?></body></html>

源码下载地址:

点击此处。

更多关于php相关内容感兴趣的读者可查看本站专题:《php+mysql数据库操作入门教程》、《php+mysqli数据库程序设计技巧总结》、《php面向对象程序设计入门教程》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》及《php常见数学生会职责据库操作技巧汇总》

希望本文所述对大家php程序设计有所帮助。

本文发布于:2023-04-06 14:58:59,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/c759bb4cb7500406cb90293fb1ffff13.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP模糊查询技术实例分析【附源码下载】.doc

本文 PDF 下载地址:PHP模糊查询技术实例分析【附源码下载】.pdf

标签:字符   模式   通配符   模糊
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图