discuzx3.1文章進行全文檢索的實現(xiàn)方法
首先說明啊,這個檢索是直接用like來弄的,所以,如果你的站數(shù)據(jù)量大,這樣很吃系統(tǒng),自己掂量著辦,我研究了下利用sphinx的,結果搞定了才發(fā)現(xiàn)這個只是針對論壇的帖子。搜索門戶中的文章,并不是按這個走的,而且利用sphinx這個啊,要么只能分中文要么只能分英文(學藝不精沒細了解啊,個人測試是這樣的)。而我目前碰到的要求是需要對文章也執(zhí)行l(wèi)ike。所以,經(jīng)過研究,類比了下搜索文章標題的功能,成功實現(xiàn)了discuzX3對門戶中的文章進行全文檢索的功能,以下操作方法discuz版本為20140101的X3.1。具體方法如下:
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));
}
上面添加那個方法才能用$query = C::t(‘portal_article_content’)->fetch_all_by_sql。
3.打開
網(wǎng)站目錄\source\module\search\search_portal.php
搜索
$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++;
}
}
上面代碼的意思是,如果搜標題沒搜到,那就用like來搜文章的內(nèi)容。
保存后,更新下discuz的緩存,搜文章里的內(nèi)容試試,如果能搜到,OK,大功告成~
您可能感興趣的文章


閱讀排行
本欄相關
- 01-11Discuz! 6.1.0 圖文安裝教程
- 01-11Discuz! 6.0.0到Discuz! 7.0.0升級教程
- 01-11Discuz!7.0邀請注冊功能詳解
- 01-11DISCUZ!論壇標簽SEO優(yōu)化
- 01-11Discuz!在論壇主題中快速插入UCHome相冊
- 01-11教您為Discuz!論壇輕松更換風格
- 01-11Discuz論壇的WAP功能在手機上使用感愛
- 01-11Discuz! 積分策略向導功能詳解
- 01-11Discuz!7.0論壇幫助功能詳解
- 01-11安裝Discuz!7.0.0 的方法與圖文教程
隨機閱讀
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-10delphi制作wav文件的方法
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10C#中split用法實例總結
- 04-02jquery與jsp,用jquery
- 01-10SublimeText編譯C開發(fā)環(huán)境設置
- 01-11ajax實現(xiàn)頁面的局部加載
- 01-10使用C語言求解撲克牌的順子及n個骰子
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 08-05織夢dedecms什么時候用欄目交叉功能?