Heim  >  Artikel  >  Backend-Entwicklung  >  高亮 php 多关键字 高亮显示实现代码

高亮 php 多关键字 高亮显示实现代码

WBOY
WBOYOriginal
2016-07-29 08:48:28993Durchsuche

项目结构:

 php 多关键字 高亮显示实现代码

开始搜索:   这里搜索关键字("大""这")

 php 多关键字 高亮显示实现代码

搜索结果:  高亮显示

 php 多关键字 高亮显示实现代码

项目所需数据库结构:

 php 多关键字 高亮显示实现代码
实现代码:
conn.php

复制代码 代码如下:


$conn = @ mysql_connect("localhost", "root", "") or die("数据库链接错误");
mysql_select_db("form", $conn);
mysql_query("set names 'gbk'");
?>


searchAndDisplayWithColor.php

复制代码 代码如下:


include 'conn.php';
?>







关键字:

cellspacing="1" bgcolor="#add3ef">
//关键字不为空的时候才执行相关搜索
if($_GET['keyWord']){
//用空格符把关键字分割开
$key=explode(' ', $_GET[keyWord]);
$sql="select * from message where title like '$key[0]' or title like '$key[1]' or content like '$key[0]' or content like '%$key[1]%'";
$query=mysql_query($sql);
while ($row=mysql_fetch_array($query)){
//替换关键字,并且把关键字高亮显示
$row[title]=preg_replace("/$key[0]/i", "$key[0]", $row[title]);
$row[title]=preg_replace("/$key[0]/i", "$key[1]", $row[title]);
$row[content]=preg_replace("/$key[0]/i", "$key[0]", $row[content]);
$row[content]=preg_replace("/$key[1]/i", "$key[1]", $row[content]);
?>









}
?>
标题:=$row[title]?> 用户:=$row[user] ?>

内容:=$row[content]?>

发表日期:=$row[lastdate]?>



说明:在这个小程序中,有一点不足之处在于,只能同时搜索两个关键字,并且中间用空格" "隔开,如果只是搜索一个关键字,如:"大"
显示的时候会出现乱码 ……^|_|^,这是由于下面代码的结果:

复制代码 代码如下:


//用空格符把关键字分割开
$key=explode(' ', $_GET[keyWord]);


如果要改进的话,在这里的后面就要做一下判断了。

以上就介绍了高亮 php 多关键字 高亮显示实现代码,包括了高亮方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn