....class.php#L397 (显示) public function setDefaultCharset($charset){ $this->_config['project.default_charset'] = strtoupper($charset);} 改变项目的默认字符集
...dk/php/lib/XS.class.php#L378 (显示) public function setName($name){ $this->_config['project.name'] = $name;} 修改当前项目名称 注意,必须在 getSearch 和 getIndex 前调用才能起作用
deinit() 方法 protected void deinit() 源码: sdk/php/util/XSDataSource.class.php#L211 (显示) protected function deinit(){ $this->db->close();}
init() 方法 protected void deinit() 源码: sdk/php/util/XSDataSource.class.php#L211 (显示) protected function deinit(){ $this->db->close();}
close() 方法 public void close() 源码: sdk/php/util/XSDataSource.class.php#L833 (显示) public function close(){ $this->obj = null;} 关闭数据库
f() 方法 public mixed f(string $name) $name string 字段名称 {return} mixed 字段值, 若不存在则返回 null 源码: sdk/php/lib/XSDocument.class.php#L192 (显示) public function f($name){ return $this->__get(strval($name));} 获取文档字段的值
getCharset() 方法 public string getCharset() {return} string 当前设定的字符集(已大写), 若未曾设置则返回 null 源码: sdk/php/lib/XSDocument.class.php#L123 (显示) public function getCharset(){ return $this->_charset;} 获取文档字符集
getFields() 方法 public array getFields() {return} array 返回已设置的字段键值数组 源码: sdk/php/lib/XSDocument.class.php#L144 (显示) public function getFields(){ return $this->_data;} 获取字段值
offsetUnset() 方法 public void offsetUnset(string $name) $name string 字段名称 源码: sdk/php/lib/XSDocument.class.php#L320 (显示) public function offsetUnset($name){ unset($this->_data[$name]);} ArrayAccess 接口, 删除字段值, 勿直接调用
...class.php#L403 (显示) public function hasCustomTokenizer(){ return ($this->tokenizer !== XSTokenizer::DFL);} 判断当前字段是否采用自定义分词器