搜索

大约有 30 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.0990秒)

1.XSDocument::f

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));} 获取文档字段的值

2.XSDocument::getCharset

getCharset() 方法 public string getCharset() {return} string 当前设定的字符集(已大写), 若未曾设置则返回 null 源码: sdk/php/lib/XSDocument.class.php#L123 (显示) public function getCharset(){ return $this->_charset;} 获取文档字符集

3.XSDocument::getFields

getFields() 方法 public array getFields() {return} array 返回已设置的字段键值数组 源码: sdk/php/lib/XSDocument.class.php#L144 (显示) public function getFields(){ return $this->_data;} 获取字段值

4.XSDocument::offsetUnset

offsetUnset() 方法 public void offsetUnset(string $name) $name string 字段名称 源码: sdk/php/lib/XSDocument.class.php#L320 (显示) public function offsetUnset($name){ unset($this->_data[$name]);} ArrayAccess 接口, 删除字段值, 勿直接调用

5.XSDocument::offsetGet

...turn} mixed 字段值, 若不存在返回 null 源码: sdk/php/lib/XSDocument.class.php#L298 (显示) public function offsetGet($name){ return $this->__get($name);} ArrayAccess 接口, 取得字段值, 勿直接调用

6.XSDocument::afterSubmit

... $index) $index XSIndex 索引操作对象 源码: sdk/php/lib/XSDocument.class.php#L344 (显示) public function afterSubmit($index){ } 重写接口, 在文档成功提交到索引服务器后调用 继承此类进行重写该方法时, 强烈建议要调用 parent::afterSave($i...

7.XSDocument::offsetExists

...bool 存在返回 true, 若不存在返回 false 源码: sdk/php/lib/XSDocument.class.php#L287 (显示) public function offsetExists($name){ return isset($this->_data[$name]);} ArrayAccess 接口, 判断字段是否存在, 勿直接调用

8.XSDocument::setCharset

...set) $charset string 设置文档字符集 源码: sdk/php/lib/XSDocument.class.php#L132 (显示) public function setCharset($charset){ $this->_charset = strtoupper($charset); if ($this->_charset == 'UTF8') { $this->_charset = 'UTF-8'; }} 设置文档字符集

9.XSDocument::offsetSet

...ring 字段名称 $value mixed 字段值 源码: sdk/php/lib/XSDocument.class.php#L309 (显示) public function offsetSet($name, $value){ if (!is_null($name)) { $this->__set(strval($name), $value); }} ArrayAccess 接口, 设置字段值, 勿直接调用

10.XSDocument::getAddIndex

...urn} string 文本内容, 若无则返回 null 源码: sdk/php/lib/XSDocument.class.php#L221 (显示) public function getAddIndex($field){ $field = strval($field); if ($this->_texts === null || !isset($this->_texts[$field])) { return null; } return $this->autoConvert($thi...

123
  • 时间不限
  • 按相关性排序