程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php實現搜索類封裝示例,php實現封裝示例

php實現搜索類封裝示例,php實現封裝示例

編輯:關於PHP編程

php實現搜索類封裝示例,php實現封裝示例


本文為大家分享了php實現搜索類封裝示例,供大家參考,具體內容如下

<?php
/**
 * SoClass.php
 * 索引與搜索類 */
 
class SoClass {
 
  private $_xindex;
 
  private $_xsearch;
 
  private $_project;
 
  public function __construct($project){
 
    //載入引導文件
    require_once 'lib/XS.php';
    //初始化
    $xs = new XS($project); 
    $this->_project = $project;
    $this->_xindex = $xs->index; 
    $this->_xsearch = $xs->search;
    $this->_xsearch->setCharset('UTF-8');
  }
 
  public function query($keyWord,$row=20,$jnum=0){
 
    $xs = new XS($this->_project);
    $xs->search->setFuzzy();
    $xs->search->setAutoSynonyms();
    $xs->search->setQuery($keyWord); //支持同義詞搜索,默認打開
    $xs->search->setLimit($row, $jnum); //設置返回結果最多為 5 條,並跳過前 10 條
    $docs = $xs->search->search(); //執行搜索,將搜索結果文檔保存在 $docs 數組中    
    $count = $xs->search->count(); //獲取搜索結果的匹配總數估算值
    if($count){
      $data = array();
      foreach ($docs as $key=>$doc){
        $data[$key]['pid'] = $doc->pid;
        $data[$key]['nid'] = $doc->nid;
        $data[$key]['category'] = $doc->category;
        $data[$key]['url'] = $doc->url;
        $data[$key]['name'] = $xs->search->highlight(htmlspecialchars($doc->name));
        $data[$key]['message'] = $xs->search->highlight(htmlspecialchars($doc->message));
      }
 
      return array('data'=>$data,'count'=>$count);
    }
    return array();
  }
 
  public function hotWord($num,$type='lastnum'){
 
    return $this->_xsearch->getHotQuery($num,$type);
  }
 
  public function expanded($keyWord){
 
    return $this->_xsearch->getExpandedQuery($keyWord);
  }
 
  public function lastCount(){
 
    return $this->_xsearch->getLastCount();
  }
 
  public function index($data,$update=0){
 
    // 創建文檔對象
    $doc = new XSDocument;
    $doc->setFields($data);
 
    // 添加或更新到索引數據庫中
    if(!$update){
      $this->_xindex->add($doc);
    }else{
      $this->_xindex->update($doc);
    }
  }
 
  public function delete($idArray){
 
    //刪除索引(主鍵刪除array('1','2','3'))
    $this->_xindex->del($idArray); 
  }
 
  public function addSynonym($word1,$word2){
 
    $this->_xindex->addSynonym($word1,$word2);
  }
 
  public function clearIndex(){
 
    $this->_xindex->clean();
  }
 
}
 
?>

以上就是本文的全部內容,希望對大家學習php程序設計有所幫助。

您可能感興趣的文章:

  • php站內搜索並高亮顯示關鍵字的實現代碼
  • php+ajax做仿百度搜索下拉自動提示框(有實例)
  • PHP寫的獲取各搜索蜘蛛爬行記錄代碼
  • PHP獲取搜索引擎關鍵字來源的函數(支持百度和谷歌等搜索引擎)
  • 有道搜索和IP138的IP的API接口(PHP應用)
  • PHP屏蔽蜘蛛訪問代碼及常用搜索引擎的HTTP_USER_AGENT
  • php中怎麼搜索相關聯數組鍵值及獲取之
  • ThinkPHP讓分頁保持搜索狀態的方法
  • jquery+php實現搜索框自動提示
  • Thinkphp搜索時首頁分頁和搜索頁保持條件分頁的方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved