...($limit); $this->_offset = intval($offset); return $this;} 设置搜索结果的数量和偏移 用于搜索结果分页, 每次调用 search 后会还原这2个变量到初始值
correctedQuery 属性 只读 public array getCorrectedQuery(string $query=NULL) 获取修正后的搜索词列表 通常当某次检索结果数量偏少时, 可以用该函数设计 "你是不是要找: ..." 功能
...) 方法 public int count(string $query=NULL) $query string 搜索语句, 若传入 null 使用默认语句, 调用后会还原默认排序方式 如果搜索语句和最近一次 search 的语句一样, 请改用 getLastCount 以提升效率 最大长度为 80 字节 ...
...nt $limit=6, string $type='total') $limit int 需要返回的热门搜索数量上限, 默认为 6, 最大值为 50 $type string 排序类型, 默认为 total(搜索总量), 可选值还有 lastnum(上周), currnum(本周) {return} array 返回以搜索词为键, 搜索指数...
...tring $field, int $num=1) $field string 依据该字段的值折叠搜索结果, 设为 null 则取消折叠 $num int 折叠后只是返最匹配的数据数量, 默认为 1, 最大值 255 {return} XSSearch 返回对象本身以支持串接操作 源码: sdk/php/lib/XSSea...
...ay getRelatedQuery(string $query=NULL, int $limit=6) $query string 搜索语句, 若传入 null 使用默认语句 $limit int 需要返回的相关搜索数量上限, 默认为 6, 最大值为 20 {return} array 返回搜索词组成的数组 源码: sdk/php/lib/XSSearch.c...
...t 版本 1.0.0 源代码 sdk/php/lib/XSSearch.class.php XS 搜索类, 执行搜索功能 有部分方法支持串接操作 $xs->search->setQuery($str)->setLimit(10, 10)->search(); $xs->close(); Public 属性 隐去继承来的属性 名称类型描述定义于 ...
...组, 最多同时支持 8 个 $exact bool 是否要求绝对精确搜索, 这会造成较大的系统开销 {return} XSSearch 返回对象本身以支持串接操作 源码: sdk/php/lib/XSSearch.class.php#L401 (显示) public function setFacets($field, $exact = false){ $buf =...
...开的前缀, 可为拼音、英文、中文 {return} array 返回搜索词组成的数组 源码: sdk/php/lib/XSSearch.class.php#L795 (显示) public function getCorrectedQuery($query = null){ $ret = array(); try { if ($query === null) { if ($this->_count > 0 &&...
...前缀, 可为拼音、英文、中文 $limit int 需要返回的搜索词数量上限, 默认为 10, 最大值为 20 {return} array 返回搜索词组成的数组 源码: sdk/php/lib/XSSearch.class.php#L755 (显示) public function getExpandedQuery($query, $limit = 10){ $ret...