搜索

大约有 225 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.0052秒)

131.XSUtil::setCharset

...mp($charset, 'utf-8')) { self::$charset = $charset; ob_start(array(__CLASS__, 'convertOut')); }} 设置输出、输入编码 默认输出的中文编码均为 UTF-8

132.RE: 平滑重建索引问题

发布时间:2012-02-10 10:02 t By hpxl

...后执行add操作,update也可以的 $index->beginRebuild(); $data = array(); $doc = new XSDocument; $doc->setFileds($data); $index->add($doc); // 这里是结束 $index->endRebuild();

133.XSSearch::addDb

...lic function addDb($name){ $name = strval($name); $this->execCommand(array('cmd' => XS_CMD_SEARCH_ADD_DB, 'buf' => $name)); $this->_curDbs[] = $name; return $this;} 添加搜索的数据库名, 支持多库同时搜索

134.自定义分词器

...ic function getTokens($value, XSDocument $doc = null) { $ret = array(); if (!empty($value)) $ret = explode('-', $value); return $ret; } } ~~~ > note: [XSTokenizer::getTokens] 的参数 `$value` 的编码始终为 UTF-8 。 如果您需要编写带有参...

135.XSIndex::__destruct

...each (self::$_adds as $srv) { $srv->close(); } self::$_adds = array(); parent::__destruct();} 析构函数 在此自动关闭开启的 rebuild

136.XSFieldMeta::fromConfig

fromConfig() 方法 public void fromConfig(array $config) $config array 原始配置属性数组 源码: sdk/php/lib/XSFieldScheme.class.php#L514 (显示) public function fromConfig($config){ // type & default setting if (isset($config['type'])) { $predef = 'self::TY...

137.XSIndex::getScwsMulti

...XSIndex.class.php#L347 (显示) public function getScwsMulti(){ $cmd = array('cmd' => XS_CMD_SEARCH_SCWS_GET, 'arg1' => XS_CMD_SCWS_GET_MULTI); $res = $this->execCommand($cmd, XS_CMD_OK_INFO); return intval($res->buf);} 获取当前索引库的分词复合等级

138.XSIndex::endRebuild

...uild === true) { $this->_rebuild = false; $this->execCommand(array('cmd' => XS_CMD_INDEX_REBUILD, 'arg1' => 1), XS_CMD_OK_DB_REBUILD); } return $this;} 完成并关闭重建索引 重建完成后调用, 用重建好的索引数据代替旧的索引数据

139.RE: 扩展安装问题求助,谢谢

更新时间:2009-05-25 21:05 t By pardis_xiong

...$top)的时候,输出的第一个数组始终是这样的: [0] => Array ( [word] => 奥迪 [times] => 1 [weight] => 9.76000022888 [attr] => nz融 ) attr是什么呢?而且,为什么是乱码。[hr] 对了斑竹,xdb...

140.使用getCorrectedQuery进行纠错出现特殊字符

发布时间:2014-05-23 15:05 t By akado

$case = $search->getCorrectedQuery(‘高’); var_dump($case); array (size=3) 0 => string '高ç é' (length=8) 1 => string '高ç« ' (length=8) 2 => string '高å° ' (length=8) ini是选定的utf-8格式,不知道为什么使用纠错后,会出现以下3种增加了特殊字...

  • 时间不限
  • 按相关性排序