贴的代码显示为双重htmlspecial_encode后的结果 如 http://www.xunsearch.com/doc/php/guide/index.overview#c10
...要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L385 (显示) public function hasIndexMixed(){ return ($this->flag & self::FLAG_INDEX_MIXED) ? true : false;} 判断当前字段是否需要在混合区索引
...要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L394 (显示) public function hasIndexSelf(){ return ($this->flag & self::FLAG_INDEX_SELF) ? true : false;} 判断当前字段是否需要在字段区索引
...ng 自定义词库内容 源码: sdk/php/lib/XSIndex.class.php#L484 (显示) public function getCustomDict(){ $res = $this->execCommand(XS_CMD_INDEX_USER_DICT, XS_CMD_OK_INFO); return $res->buf;} 获取自定义词典内容
...对象以支持串接操作 源码: sdk/php/lib/XSIndex.class.php#L85 (显示) public function update(XSDocument $doc, $add = false){ // before submit if ($doc->beforeSubmit($this) === false) { return $this; } // check primary key of document $fid = $this->xs->getFieldId()...
__destruct() 方法 public void __destruct() 源码: sdk/php/lib/XS.class.php#L304 (显示) public function __destruct(){ $this->_index = null; $this->_search = null;} 析构函数 由于对象交叉引用, 如需提前销毁对象, 请强制调用该函数
...对象以支持串接操作 源码: sdk/php/lib/XSIndex.class.php#L59 (显示) public function clean(){ $this->execCommand(XS_CMD_INDEX_CLEAN_DB, XS_CMD_OK_DB_CLEAN); return $this;} 完全清空索引数据 如果当前数据库处于重建过程中将禁止清空
...被检索到) 可以在使用util/Quest.php进行查询的时候 可以显示出来呢? (目的是:当检索到结果的时候 想知道它是来自哪个文件的) [hr] 我仔细用了一下xunsearch 它可以直接建立应用 很方便!! 谢谢你的开发和帮助!
... ... ... ... ... ... ... ... ... ... ... 通过精确查找,显示统计数量count="232" ,数据统计不止这些,都到了四五百了。 ... ... ... [color=#FF0000]如果不使用双引号,显示统计数量count="759",但是真实数据只有431条[/color] [h...
...tring 新的词典内容 源码: sdk/php/lib/XSIndex.class.php#L495 (显示) public function setCustomDict($content){ $cmd = array('cmd' => XS_CMD_INDEX_USER_DICT, 'arg1' => 1, 'buf' => $content); $this->execCommand($cmd, XS_CMD_OK_DICT_SAVED);} 设置自定义词典内容