当前位置: 首页 > 工具软件 > SimpleSearch > 使用案例 >

SimpleSearch创建检索库

裘光启
2023-12-01
<?php
/**
 * 创建搜索数据库
 */
    require_once 'sps.php';
    
    $sps = new sps('192.168.0.211', '6162', 'test');        //链接搜索服务器
    if ($sps == false){
       echo $sps->errstr();                                 //errstr函数为错误原因
       die();
    }
    
    $set_result = $sps->set_charset('gb2312'); 
    if ($set_result == false){
        echo $sps->errstr();
        die();
    }
    
    
    /**
     * @todo 添加新搜索库
     * name address age sex为搜索为字段,相当于一个表的概念。   SPS_FIELD_TYPE_STRING 为字符串类型  SPS_FIELD_TYPE_NUMBER为数值类型,包括浮点型
     */
    $arr = array(
                 'name' => sps::SPS_FIELD_TYPE_STRING,
                 'address' =>sps::SPS_FIELD_TYPE_STRING,
                 'age' =>sps::SPS_FIELD_TYPE_NUMBER,
                 'sex' =>sps::SPS_FIELD_TYPE_STRING,
    );
    $sps->create_db($arr);
?>

官方链接: http://code.google.com/p/simplesearch-sps/
 类似资料: