花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊(cè) 退出 找回密碼

discuzx3.4文章進(jìn)行全文檢索的實(shí)現(xiàn)方法

時(shí)間: 2019-05-24 11:57 閱讀: 作者:素材無憂網(wǎng)

搜索門戶中的文章,并不是按這個(gè)走的,而且利用sphinx這個(gè)啊,要么只能分中文要么只能分英文(學(xué)藝不精沒細(xì)了解啊,個(gè)人測(cè)試是這樣的)。

1.用notepad++或其他文本編輯器打開下述文件

網(wǎng)站目錄\source\class\table\table_portal_article_content.php
2.在下面的

代碼如下:

class table_portal_article_content extends discuz_table
{

后添加

代碼如下:

public function fetch_all_by_sql($where, $order = '', $start = 0, $limit = 0, $count = 0, $alias = '') {
$where = $where && !is_array($where) ? " WHERE $where" : '';
if(is_array($order)) {
$order = '';
}
if($count) {
return DB::result_first('SELECT count(*) FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));
}
return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));
}


變?yōu)椋?br />
代碼如下:

class table_portal_article_content extends discuz_table
{
public function fetch_all_by_sql($where, $order = '', $start = 0, $limit = 0, $count = 0, $alias = '') {
$where = $where && !is_array($where) ? " WHERE $where" : '';
if(is_array($order)) {
$order = '';
}
if($count) {
return DB::result_first('SELECT count(*) FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));
}
return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));
}


上面添加那個(gè)方法才能用$query = C::t(‘portal_article_content’)->fetch_all_by_sql。

3.打開

網(wǎng)站目錄\source\module\search\search_portal.php

搜索

代碼如下:
</p> <p> foreach($query as $article) {
$ids .= ','.$article['aid'];
$num++;
}



在其后添加如下代碼:

代碼如下:

if($num==0){
list($srchtxt, $srchtxtsql) = searchkey($keyword, "content LIKE '%{text}%'", true);
$query = C::t('portal_article_content')->fetch_all_by_sql(' 1 '.$srchtxtsql, 'ORDER BY aid DESC ', 0, $_G['setting']['search']['portal']['maxsearchresults']);
foreach($query as $article) {
$ids .= ','.$article['aid'];
$num++;
}
}


上面代碼的意思是,如果搜標(biāo)題沒搜到,那就用like來搜文章的內(nèi)容。

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!

轉(zhuǎn)載請(qǐng)注明: discuzx3.4文章進(jìn)行全文檢索的實(shí)現(xiàn)方法

標(biāo)簽:  
相關(guān)文章
模板推薦