...法: interface XSDataFilter { /** * 数据处理函数, 返回 false 则跳过不处理 * @param array $data 字段名和值组成的数据数组 * @param mixed $cs 数据字符集, 如无法确定则为 false */ public function process($data, $cs); } 中 public function pro...
getCharset() 方法 public string getCharset() {return} string 字符集名称 源码: sdk/php/util/XSDataSource.class.php#L86 (显示) public function getCharset(){ return false;} 取得数据源的准确字符集 如不能确定字符集, 请直接返回 false
process() 方法 public void process($data, $cs=false) $data $cs 源码: sdk/php/util/XSDataSource.class.php#L990 (显示) public function process($data, $cs = false){ echo "\n----- DEBUG DATA INFO -----\n"; print_r($data); return $data;}
... hasIndex() {return} bool 若需要返回 true, 不需要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L376 (显示) public function hasIndex(){ return ($this->flag & self::FLAG_INDEX_BOTH) ? true : false;} 判断当前字段是否需要索引
... public bool withPos() {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L335 (显示) public function withPos(){ return ($this->flag & self::FLAG_WITH_POSITION) ? true : false;} 判断当前字段索引是否支持短语搜索
close() 方法 public void close($ioerr=false) $ioerr 源码: sdk/php/lib/XSIndex.class.php#L504 (显示) public function close($ioerr = false){ $this->closeBuffer(); parent::close($ioerr);} 关闭索引服务端连接
...ndexMixed() {return} bool 若需要返回 true, 不需要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L385 (显示) public function hasIndexMixed(){ return ($this->flag & self::FLAG_INDEX_MIXED) ? true : false;} 判断当前字段是否需要在混合区索引
...IndexSelf() {return} bool 若需要返回 true, 不需要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L394 (显示) public function hasIndexSelf(){ return ($this->flag & self::FLAG_INDEX_SELF) ? true : false;} 判断当前字段是否需要在字段区索引
...$cmd, XS_CMD_OK_QUERY_STRING); if (strpos($res->buf, 'VALUE_RANGE') !== false) { $regex = '/(VALUE_RANGE) (\d+) (\S+) (.+?)(?=\))/'; $res->buf = preg_replace_callback($regex, array($this, 'formatValueRange'), $res->buf); } if (strpos($res->buf, 'VALUE_GE') !== false || strpos(...
... public array getAllSynonyms(int $limit=0, int $offset=0, bool $stemmed=false) $limit int 数量上限, 若设为 0 则启用默认值 100 个 $offset int 偏移量, 即跳过的结果数量, 默认为 0 $stemmed bool 是否包含处理过的词根同义词, 默认为 fals...