• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php如何连接coreseek

php 搞代码 4年前 (2022-01-22) 17次浏览 已收录 0个评论

本篇文章主要介绍一个php和coreseek结合的例子,有对php如何连接coreseek感兴趣的小伙伴参考下。

以下是代码

<?phprequire_once AN_ROOT."/inc/sphinxapi.php";require_once AN_ROOT."/res/adodb/adodb.inc.php";$keywords = $_REQUEST['keywords'];$info    = getInfoCoreSeek($keywords,$_GET['page']);function getInfoCoreSeek($keywords,$page=1) {    $mode = SPH_MATCH_ANY;    $host = "localhost";    $port = 3312;    $index = "*";    $limit = 4;    $ranker = SPH_RANK_PROXIMITY_BM25;    if(!$page) $page=1;    $page = intval($page);    $off = ($page-1)*$limit;    $cl = new SphinxClient ();    $cl->SetServer ( $host, $port );    $cl->SetConnectTimeout ( 1 );    $cl->SetWeights ( array ( 100, 1 ) );    $cl->SetMatchMode ( $mode );    $cl->SetLimits ( $off, $limit, ( $limit>10000 ) ? $limit : 10000 );    $cl->SetRankingMode ( $ranker );    $cl->SetArrayResult ( true );    $res    = $cl->Query ( join(" ", $keywords), $index );    if($res) {        $pageL    = PageQuery($res['total'],$page,4,"act=search&keywords=".$_REQUEST['keywords']);        foreach($res['matches'] as $v) {<em>¥本文来%源[email protected]搞@^&代*@码)网5</em><strong>搞gaodaima代码</strong>            $arrID[]    = $v['id'];            }        $rs    = $GLOBALS['db']->GetAll("select id,title,content from info where id in(".join(',', $arrID).")");        $GLOBALS['tpl']->assign('pageL', $pageL);        //echo '<pre>';        //print_r($res);        //echo '</pre>';        return $rs;    }}?>

相关推荐:

linux下编译安装Sphinx、中文分词coreseek及PHP的sphinx扩展

coreseek (sphinx)+ Mysql + Thinkphp搭建中文搜索引擎详解

coreseek配置以及增量索引合并索引

以上就是php如何连接coreseek的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php如何连接coreseek
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址