reopen() 方法 public XSServer reopen(bool $force=false) $force bool 是否强制重新连接, 默认为否 {return} XSServer 返回自己, 以便串接操作 源码: sdk/php/lib/XSServer.class.php#L185 (显示) public function reopen($force = false){ if ($this->_flag...
setCharset() 方法 public static void setCharset(string $charset) $charset string 期望得到的字符集 源码: sdk/php/util/XSUtil.class.php#L69 (显示) public static function setCharset($charset){ if ($charset !== null && strcasecmp($charset, 'utf8') && strcasecmp($char...
getDataList() 方法 protected 结果数组, getDataList() {return} 结果数组, 没有更多数据时返回 false 源码: sdk/php/util/XSDataSource.class.php#L220 (显示) protected function getDataList(){ if ($this->limit <= 0) { return false; } $sql = $this->s...
addDb() 方法 public XSSearch addDb(string $name) $name string {return} XSSearch 返回对象本身以支持串接操作 源码: sdk/php/lib/XSSearch.class.php#L492 (显示) public function addDb($name){ $name = strval($name); $this->execCommand(array('cmd' => XS_...
__toString() 方法 public string __toString() {return} string 异常的简要描述信息 源码: sdk/php/lib/XS.class.php#L149 (显示) public function __toString(){ $string = '[' . __CLASS__ . '] ' . $this->getRelPath($this->_file) . '(' . $this->_line . '): '; $string ....
isSpeical() 方法 public bool isSpeical() {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L367 (显示) public function isSpeical(){ return ($this->type == self::TYPE_ID || $this->type == self::TYPE_TITLE || $this->type == self::TY...
setIgnore() 方法 public XSTokenizerScws setIgnore(bool $yes=true) $yes bool 是否忽略 {return} XSTokenizerScws 返回对象本身以支持串接操作 源码: sdk/php/lib/XSTokenizer.class.php#L256 (显示) public function setIgnore($yes = true){ $this->_setting['...
[quote='hightman' pid='5447' dateline='1387443918'] addRange 后会影响概率计算,count 会有问题 [/quote] 有什么什么方法能得出相对准确的count呢,数据量小时count没有问题,大的时候差别非常大
isBoolIndex() 方法 public bool isBoolIndex() {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L345 (显示) public function isBoolIndex(){ if ($this->flag & self::FLAG_NON_BOOL) { return false; } return (!$this->hasInd...
...分词出现错误是该如何修正呢?可否通过添加用户字典等方法来修正呢? 现在时间分词为: 现在时/n 间/f 期待分词结果:现在 时间 ②词性方面如何修正呢? 例如,希望将,“了”的词性由 v 改为: e 新建一个userdic辞...