当前位置: 首页 > 站长资讯 > 正文页面

discuzx3.1文章进行全文检索的实现方法

首先说明啊,这个检索是直接用like来弄的,所以,如果你的站数据量大,这样很吃系统,自己掂量着办,我研究了下利用sphinx的,结果搞定了才发现这个只是针对论坛的帖子。0mB网站目录_网站网址收录与提交入口

搜索门户中的文章,并不是按这个走的,而且利用sphinx这个啊,要么只能分中文要么只能分英文(学艺不精没细了解啊,个人测试是这样的)。而我目前碰到的要求是需要对文章也执行like。0mB网站目录_网站网址收录与提交入口

所以,经过研究,类比了下搜索文章标题的功能,成功实现了discuzX3对门户中的文章进行全文检索的功能,以下操作方法discuz版本为20140101的X3.1。具体方法如下:0mB网站目录_网站网址收录与提交入口

1.用notepad++或其他文本编辑器打开下述文件0mB网站目录_网站网址收录与提交入口

网站目录/source/class/table/table_portal_article_content.php0mB网站目录_网站网址收录与提交入口

2.在下面的0mB网站目录_网站网址收录与提交入口

class table_portal_article_content extends discuz_table0mB网站目录_网站网址收录与提交入口

{0mB网站目录_网站网址收录与提交入口

后添加0mB网站目录_网站网址收录与提交入口

public function fetch_all_by_sql($where, $order = '', $start = 0, $limit = 0, $count = 0, $alias = '') {0mB网站目录_网站网址收录与提交入口

$where = $where && !is_array($where) ? " WHERE $where" : '';0mB网站目录_网站网址收录与提交入口

if(is_array($order)) {0mB网站目录_网站网址收录与提交入口

$order = '';0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

if($count) {0mB网站目录_网站网址收录与提交入口

return DB::result_first('SELECT count(*) FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

变为:0mB网站目录_网站网址收录与提交入口

class table_portal_article_content extends discuz_table0mB网站目录_网站网址收录与提交入口

{0mB网站目录_网站网址收录与提交入口

public function fetch_all_by_sql($where, $order = '', $start = 0, $limit = 0, $count = 0, $alias = '') {0mB网站目录_网站网址收录与提交入口

$where = $where && !is_array($where) ? " WHERE $where" : '';0mB网站目录_网站网址收录与提交入口

if(is_array($order)) {0mB网站目录_网站网址收录与提交入口

$order = '';0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

if($count) {0mB网站目录_网站网址收录与提交入口

return DB::result_first('SELECT count(*) FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

上面添加那个方法才能用$query = C::t(‘portal_article_content’)->fetch_all_by_sql。0mB网站目录_网站网址收录与提交入口

3.打开0mB网站目录_网站网址收录与提交入口

网站目录/source/module/search/search_portal.php0mB网站目录_网站网址收录与提交入口

搜索0mB网站目录_网站网址收录与提交入口

</p> <p> foreach($query as $article) {0mB网站目录_网站网址收录与提交入口

$ids .= ','.$article['aid'];0mB网站目录_网站网址收录与提交入口

$num++;0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

在其后添加如下代码:0mB网站目录_网站网址收录与提交入口

if($num==0){0mB网站目录_网站网址收录与提交入口

list($srchtxt, $srchtxtsql) = searchkey($keyword, "content LIKE '%{text}%'", true);0mB网站目录_网站网址收录与提交入口

$query = C::t('portal_article_content')->fetch_all_by_sql(' 1 '.$srchtxtsql, 'ORDER BY aid DESC ', 0, $_G['setting']['search']['portal']['maxsearchresults']);0mB网站目录_网站网址收录与提交入口

foreach($query as $article) {0mB网站目录_网站网址收录与提交入口

$ids .= ','.$article['aid'];0mB网站目录_网站网址收录与提交入口

$num++;0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

}0mB网站目录_网站网址收录与提交入口

上面代码的意思是,如果搜标题没搜到,那就用like来搜文章的内容。0mB网站目录_网站网址收录与提交入口

保存后,更新下discuz的缓存,搜文章里的内容试试,如果能搜到,OK,大功告成~0mB网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章