溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php中怎么查詢關(guān)鍵字

發(fā)布時間:2021-07-23 16:18:41 來源:億速云 閱讀:128 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)php中怎么查詢關(guān)鍵字,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

具體內(nèi)容如下

php中怎么查詢關(guān)鍵字

一、一個關(guān)鍵字查詢

主頁面:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>汽車查詢頁面</title>
</head>
 
<body>
<h2>汽車查詢頁面</h2>
<?php
  include("QiChe.class.php");
  $db=new QiChe();
  //保留輸入查詢的內(nèi)容
  $cx="";
  $value="";
  if(!empty($_POST["name"]))//判斷查詢內(nèi)容是否為空
  {
  $name=$_POST["name"];
  $cx=" where name like '%{$name}%'";//查詢的字符串
  $value=$name;
  }
?>
 
<br>
<form action="QiChe.php" method="post">
<div>
請輸入查詢內(nèi)容:<input type="text" name="name" value="<?php echo $value; ?>"/> 
<input type="submit" value="查詢"/>
</div>
</form>
<br />
 
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>代號</td>
<td>汽車名稱</td>
<td>油耗</td>
<td>功率</td>
<td>價格</td>
</tr>
 
<?php
  $sql="select * from Car".$cx;
  $attr=$db->query($sql);
  foreach ($attr as $v)
  {
  //使輸入查詢的關(guān)鍵字變色,處理name
  //$rp="<mark>{$value}</mark>";
  $rp="<span style='color:red'>{$value}</span>";
  $arr=str_replace($value,$rp,$v[1]);
   
  echo "<tr>
  <td>{$v[0]}</td>
  <td>{$arr}</td>
  <td>{$v[4]}</td>
  <td>{$v[5]}</td>
  <td>{$v[7]}</td>    
  </tr>";
  }
?>
 
</table>
</body>
</html>

封裝類: 

<?php
class QiChe
{
  public $localhost="localhost";//服務(wù)器
  public $uid="root";//用戶名
  public $password="";//密碼
  //執(zhí)行查詢語句sql方法:
  //參數(shù)的含義:$sql代表要執(zhí)行的sql語句;$type代表sql語句的類型,自義0為查詢,1為其他(增刪改查);$db代表要查詢的數(shù)據(jù)庫
  public function Query($sql,$type="0",$db="mydb")
  {
    $dbconnect=new MySQLi($this->localhost,$this->uid,$this->password,$db);
    !mysqli_connect_error() or die("連接失敗 !");
    $result=$dbconnect->query($sql);
     
    if($type==0)
    {
      return $result->fetch_all();
    }
    else
    {
      return $result;
    }
  } 
}

運(yùn)行結(jié)果:

php中怎么查詢關(guān)鍵字

php中怎么查詢關(guān)鍵字

二、多個關(guān)鍵字查詢

主頁面:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>汽車查詢頁面</title>
</head>
 
<body>
<h2>汽車查詢頁面</h2>
<br>
<?php
include ("./DBDA.class.php");
$db=new DBDA();
$cx="";
$value="";
$value1="";
$tj1=" 1=1";//條件1的判斷name
$tj2=" 1=1";//條件2的判斷brand
if(!empty($_POST["name"]))
{
  $name=$_POST["name"];
  $tj1="name like '%{$_POST['name']}%'"; 
  $value=$name;
   
}
if(!empty($_POST["brand"]))
{
  $name1=$_POST["brand"];
  $tj2="brand= '{$_POST['brand']}'"; 
  $value1=$name1;
}
$cx=" where $tj1 and $tj2";//查詢字符串
?>
 
<form action="ChaXun1.php" method="post">
<div>
請輸入名稱:<input type="text" name="name" value="<?php echo $value; ?>"/> 
系列:<input type="text" name="brand" value="<?php echo $value1; ?>">
<input type="submit" name="" value="查詢">
 
</div>
</form>
<br>
 
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>代號</td>
<td>汽車名稱</td>
<td>系列</td>
<td>價格</td>
<td>油耗</td>
<td>功率</td>
</tr>
 
<?php
$sql="select * from Car".$cx;
$attr=$db->Query($sql);
foreach ($attr as $v)
{
   
  //處理name
  //$rp="<mark>{$value}</mark>";
  $rp="<span style='color:red'>{$value}</span>";
  $str=str_replace($value,$rp,$v[1]);
  echo "<tr>
  <td>{$v[0]}</td>
  <td>{$str}</td>
  <td>{$v[2]}</td>
  <td>{$v[7]}</td>
  <td>{$v[4]}</td>
  <td>{$v[5]}</td>  
  </tr>";
  }
?>
</table>
 
</body>
</html>

運(yùn)行結(jié)果:

php中怎么查詢關(guān)鍵字

看完上述內(nèi)容,你們對php中怎么查詢關(guān)鍵字有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI