搜索

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

1.XSDocument::offsetExists

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

2.XSFieldScheme::getField

...名称(string) 或字段序号(vno, int) $throw bool 当字段存在时是否抛出异常, 默认为 true {return} XSFieldMeta 字段元数据对象, 若存在则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L93 (显示) public function getField($name, $throw = ...

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

4.XSDocument::offsetGet

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

5.XS::getField

...名称(string) 或字段序号(vno, int) $throw bool 当字段存在时是否抛出异常, 默认为 true {return} XSFieldMeta 字段元数据对象 源码: sdk/php/lib/XS.class.php#L514 (显示) public function getField($name, $throw = true){ return $this->_scheme->getFie...

6.XSDocument::__get

... $name string 字段名称 {return} mixed 字段值, 若存在返回 null 源码: sdk/php/lib/XSDocument.class.php#L79 (显示) public function __get($name){ if (!isset($this->_data[$name])) { return null; } return $this->autoConvert($this->_data[$name]);} ...

7.XSSearch::getFacets

... {return} array 返回由值和计数组成的关联数组, 若存在或未曾登记过则返回空数组 源码: sdk/php/lib/XSSearch.class.php#L427 (显示) public function getFacets($field = null){ if ($field === null) { return $this->_facets; } return isset($this-...

8.XSSearch::getSynonyms

...查询同义词的原词 {return} array 同义词记录数组, 存在同义词则返回空数组 源码: sdk/php/lib/XSSearch.class.php#L187 (显示) public function getSynonyms($term){ $term = strval($term); if (strlen($term) === 0) { return false; } $cmd = array(...

9.XSDocument

... XSDocument offsetExists() ArrayAccess 接口, 判断字段是否存在, 勿直接调用 XSDocument offsetGet() ArrayAccess 接口, 取得字段值, 勿直接调用 XSDocument offsetSet() ArrayAccess 接口, 设置字段值, 勿直接调用 XSDocument offsetUnset() Ar...

10.XSUtil::getOpt

...顺序的参数 {return} string 返回可用的参数值,若存在则返回 null 源码: sdk/php/util/XSUtil.class.php#L161 (显示) public static function getOpt($short, $long = null, $extra = false){ if (self::$options === null) { self::parseOpt(); } $value = null...

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