搜索

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

11.XSFieldMeta::hasIndexMixed

hasIndexMixed() 方法 public bool hasIndexMixed() {return} bool 若需要返回 true, 不需要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L385 (显示) public function hasIndexMixed(){ return ($this->flag & self::FLAG_INDEX_MIXED) ? true : false;} 判断...

12.XSFieldMeta::hasIndexSelf

hasIndexSelf() 方法 public bool hasIndexSelf() {return} bool 若需要返回 true, 不需要则返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L394 (显示) public function hasIndexSelf(){ return ($this->flag & self::FLAG_INDEX_SELF) ? true : false;} 判断当...

13.XSFieldMeta::__toString

__toString() 方法 public string __toString() {return} string 字段名称 源码: sdk/php/lib/XSFieldScheme.class.php#L310 (显示) public function __toString(){ return $this->name;} 将对象转换为字符串

14.XSFieldMeta::isSpeical

isSpeical() 方法 public bool isSpeical() {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L367 (显示) public function isSpeical(){ return ($this->type == self::TYPE_ID || $this->type == self::TYPE_TITLE || $this->type == self::TY...

15.XSFieldMeta::isBoolIndex

isBoolIndex() 方法 public bool isBoolIndex() {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L345 (显示) public function isBoolIndex(){ if ($this->flag & self::FLAG_NON_BOOL) { return false; } return (!$this->hasInd...

16.XSFieldMeta::__construct

__construct() 方法 public void __construct(string $name, array $config=NULL) $name string 字段名称 $config array 可选参数, 初始化字段各项配置 源码: sdk/php/lib/XSFieldScheme.class.php#L298 (显示) public function __construct($name, $config = null){ ...

17.XSFieldMeta::val

val() 方法 public mixed val(mixed $value) $value mixed 原值 {return} mixed 转换后的值 源码: sdk/php/lib/XSFieldScheme.class.php#L320 (显示) public function val($value){ if ($this->type == self::TYPE_DATE) { // 日期类型: 转换成专用的 YYYYmm...

18.XSFieldScheme

...hp XS 数据字段方案 每个方案包含若干个字段结构对象 XSFieldMeta 每个方案必须并且只能包含一个类型为 ID 的字段, 支持 foreach 遍历所有字段 Public 方法 隐去继承来的方法 名称描述定义于 __toString() 将对象转...

19.XSFieldScheme::getFieldTitle

getFieldTitle() 方法 public XSFieldMeta getFieldTitle() {return} XSFieldMeta 类型为 TITLE 的字段 源码: sdk/php/lib/XSFieldScheme.class.php#L59 (显示) public function getFieldTitle(){ if (isset($this->_typeMap[XSFieldMeta::TYPE_TITLE])) { $name = $this->_type...

20.XSFieldScheme::getFieldBody

getFieldBody() 方法 public XSFieldMeta getFieldBody() {return} XSFieldMeta 类型为 BODY 的字段 源码: sdk/php/lib/XSFieldScheme.class.php#L77 (显示) public function getFieldBody(){ if (isset($this->_typeMap[XSFieldMeta::TYPE_BODY])) { $name = $this->_typeMap[X...

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