afterSubmit() 方法 public void afterSubmit(XSIndex $index) $index XSIndex 索引操作对象 源码: sdk/php/lib/XSDocument.class.php#L344 (显示) public function afterSubmit($index){ } 重写接口, 在文档成功提交到索引服务器后调用 继承此类进行重...
XSSearch All Packages | 属性 | 方法(函数) 包 XS 继承关系 class XSSearch » XSServer » XSComponent 版本 1.0.0 源代码 sdk/php/lib/XSSearch.class.php XS 搜索类, 执行搜索功能 有部分方法支持串接操作 $xs->search->setQuery($str)->se...
__unset() 方法 public void __unset(string $name) $name string 属性名称 源码: sdk/php/lib/XS.class.php#L231 (显示) public function __unset($name){ $this->__set($name, null);} 魔术方法 __unset 删除、取消模拟属性, 相当于设置属性值为 null
我希望在搜索之前获取搜索结果的准确数目,以及搜索结果中日期是今天的数目。我目前用的方法是构造搜索条件,然后调用 count 方法,但获得的结果有时是错误的,请问该怎么作?谢谢
__isset() 方法 public bool __isset(string $name) $name string 属性名称 {return} bool 若存在为 true, 反之为 false 源码: sdk/php/lib/XS.class.php#L221 (显示) public function __isset($name){ return method_exists($this, 'get' . $name);} 魔术方法 __...
源码目录里是没有php.h的; 现在在编译时遇到一个新的问题: fatal error C1083: 无法打开包括文件:“../main/config.w32.h”: No such file or directory 用网上的那些方法也还是没法解决,请问有什么方法没? 我的编译环境是VS2008
源码目录里是没有php.h的; 现在在编译时遇到一个新的问题: fatal error C1083: 无法打开包括文件:“../main/config.w32.h”: No such file or directory 用网上的那些方法也还是没法解决,请问有什么方法没? 我的编译环境是VS2008
beforeSubmit() 方法 public bool beforeSubmit(XSIndex $index) $index XSIndex 索引操作对象 {return} bool 默认返回 true, 若返回 false 将阻止该文档提交到索引服务器 源码: sdk/php/lib/XSDocument.class.php#L331 (显示) public function beforeSubmit...
__get() 方法 public mixed __get(string $name) $name string 字段名称 {return} mixed 字段值, 若不存在返回 null 源码: sdk/php/lib/XSDocument.class.php#L79 (显示) public function __get($name){ if (!isset($this->_data[$name])) { return null; } ...