discuzx3.1文章進(jìn)行全文檢索的實(shí)現(xiàn)方法
來(lái)源:易賢網(wǎng) 閱讀:788 次 日期:2015-03-05 13:32:53
溫馨提示:易賢網(wǎng)小編為您整理了“discuzx3.1文章進(jìn)行全文檢索的實(shí)現(xiàn)方法”,方便廣大網(wǎng)友查閱!

首先說(shuō)明啊,這個(gè)檢索是直接用like來(lái)弄的,所以,如果你的站數(shù)據(jù)量大,這樣很吃系統(tǒng),自己掂量著辦,我研究了下利用sphinx的,結(jié)果搞定了才發(fā)現(xiàn)這個(gè)只是針對(duì)論壇的帖子。搜索門(mén)戶(hù)中的文章,并不是按這個(gè)走的,而且利用sphinx這個(gè)啊,要么只能分中文要么只能分英文(學(xué)藝不精沒(méi)細(xì)了解啊,個(gè)人測(cè)試是這樣的)。而我目前碰到的要求是需要對(duì)文章也執(zhí)行l(wèi)ike。所以,經(jīng)過(guò)研究,類(lèi)比了下搜索文章標(biāo)題的功能,成功實(shí)現(xiàn)了discuzX3對(duì)門(mén)戶(hù)中的文章進(jìn)行全文檢索的功能,以下操作方法discuz版本為20140101的X3.1。具體方法如下:

1.用notepad++或其他文本編輯器打開(kāi)下述文件

網(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)椋?/P>

代碼如下:

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.打開(kāi)

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

搜索

復(fù)制代碼代碼如下:</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)題沒(méi)搜到,那就用like來(lái)搜文章的內(nèi)容。

保存后,更新下discuz的緩存,搜文章里的內(nèi)容試試,如果能搜到,OK,大功告成~

更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄

更多信息請(qǐng)查看CMS教程
易賢網(wǎng)手機(jī)網(wǎng)站地址:discuzx3.1文章進(jìn)行全文檢索的實(shí)現(xiàn)方法
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢(xún)回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢(xún)?yōu)闇?zhǔn)!
相關(guān)閱讀CMS教程

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢(xún) | 簡(jiǎn)要咨詢(xún)須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專(zhuān)用圖標(biāo)
聯(lián)系電話(huà):0871-65099533/13759567129 獲取招聘考試信息及咨詢(xún)關(guān)注公眾號(hào):hfpxwx
咨詢(xún)QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專(zhuān)用圖標(biāo)