...int getDbTotal() {return} int 数据总量 源码: sdk/php/lib/XSSearch.class.php#L659 (显示) public function getDbTotal(){ $cmd = new XSCommand(XS_CMD_SEARCH_DB_TOTAL); $res = $this->execCommand($cmd, XS_CMD_OK_DB_TOTAL); $tmp = unpack('Itotal', $res->buf); return $tmp['t...
allSynonyms 属性 只读 (自版本 v1.3.0 起可用) public array getAllSynonyms(int $limit=0, int $offset=0, bool $stemmed=false) 获取当前库内的全部同义词列表
correctedQuery 属性 只读 public array getCorrectedQuery(string $query=NULL) 获取修正后的搜索词列表 通常当某次检索结果数量偏少时, 可以用该函数设计 "你是不是要找: ..." 功能
dbTotal 属性 只读 public int getDbTotal() 获取搜索数据库内的数据总量
hotQuery 属性 只读 public array getHotQuery(int $limit=6, string $type='total') 获取热门搜索词列表
lastCount 属性 只读 public int getLastCount() 获取最近那次搜索的匹配总数估值
relatedQuery 属性 只读 public array getRelatedQuery(string $query=NULL, int $limit=6) 获取相关搜索词列表
addQueryTerm() 方法 public XSSearch addQueryTerm(string $field, string $term, int $addOp=0, float $scale=1) $field string 索引词所属的字段, 若为混合区词汇可设为 null 或 body 型的字段名 $term string 索引词 (强制转为小写) $addOp int 与...
..., 若不存在或未曾登记过则返回空数组 源码: sdk/php/lib/XSSearch.class.php#L427 (显示) public function getFacets($field = null){ if ($field === null) { return $this->_facets; } return isset($this->_facets[$field]) ? $this->_facets[$field] : array();} 读取...
... $wdf int 需要记录的次数, 默认为 1 源码: sdk/php/lib/XSSearch.class.php#L831 (显示) public function addSearchLog($query, $wdf = 1){ $cmd = array('cmd' => XS_CMD_SEARCH_ADD_LOG, 'buf' => $query); if ($wdf > 1) { $cmd['buf1'] = pack('i', $wdf); } $this->exec...