count() 方法 public int count(string $query=NULL) $query string 搜索语句, 若传入 null 使用默认语句, 调用后会还原默认排序方式 如果搜索语句和最近一次 search 的语句一样, 请改用 getLastCount 以提升效率 最大长度为 80 字...
terms() 方法 public array terms(string $query=NULL, bool $convert=true) $query string 搜索语句, 若传入 null 使用默认语句, 最大长度为 80 字节 $convert bool 是否进行编码转换, 默认为 true {return} array 可用于高亮显示的词条列表...
getQuery() 方法 public string getQuery(string $query=NULL) $query string 搜索语句, 若传入 null 使用默认语句 {return} string 返回解析后的搜索语句 源码: sdk/php/lib/XSSearch.class.php#L204 (显示) public function getQuery($query = null){ $quer...
getRelatedQuery() 方法 public array getRelatedQuery(string $query=NULL, int $limit=6) $query string 搜索语句, 若传入 null 使用默认语句 $limit int 需要返回的相关搜索数量上限, 默认为 6, 最大值为 20 {return} array 返回搜索词组成...
addRange() 方法 public XSSearch addRange(string $field, mixed $from, mixed $to) $field string $from mixed 起始值(不包含), 若设为 null 则相当于匹配 <= to (字典顺序) $to mixed 结束值(包含), 若设为 null 则相当于匹配 >= from (字典顺...
getCorrectedQuery() 方法 public array getCorrectedQuery(string $query=NULL) $query string 需要展开的前缀, 可为拼音、英文、中文 {return} array 返回搜索词组成的数组 源码: sdk/php/lib/XSSearch.class.php#L795 (显示) public function getCorrecte...
setQuery() 方法 public XSSearch setQuery(string $query) $query string 搜索语句, 设为 null 则清空搜索语句, 最大长度为 80 字节 {return} XSSearch 返回对象本身以支持串接操作 源码: sdk/php/lib/XSSearch.class.php#L227 (显示) public functio...
XSSearch All Packages | 属性 | 方法(函数) 包 XS 继承关系 class XSSearch » XSServer » XSComponent 版本 1.0.0 源代码 sdk/php/lib/XSSearch.class.php XS 搜索类, 执行搜索功能 有部分方法支持串接操作 $xs->search->setQuery($str)->se...
query 属性 public string getQuery(string $query=NULL)public XSSearch setQuery(string $query) 获取解析后的搜索语句
search() 方法 public XSDocument[] search(string $query=NULL, boolean $saveHighlight=true) $query string 搜索语句, 若传入 null 使用默认语句, 最大长度为 80 字节 $saveHighlight boolean 是否存储查询词用于高亮处理, 默认为 true {return} XS...