搜索

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

21.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){ ...

22.XSDocument::__get

__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; } ...

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

24.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 接口, 删除字段值, 勿直接调用

25.XSDocument::offsetGet

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

26.XSDocument::offsetExists

offsetExists() 方法 public bool offsetExists(string $name) $name string 字段名称 {return} bool 存在返回 true, 若不存在返回 false 源码: sdk/php/lib/XSDocument.class.php#L287 (显示) public function offsetExists($name){ return isset($this->_data[$name]...

27.一个字符搜索不到数据,必须两个字符或以上才行

更新时间:2014-06-05 20:06 t By phpqinsir

...以到到康师傅的记录。 我的配置如下: [php] project.name = goods project.default_charset = utf-8 server.index = 8383 server.search = 8384 ; 商品ID 与配送范围 配送范围以特殊格式放到标题后面 [goods_id] type = id ; 商品名称 [goods_name] type ...

28.XSComponent::__unset

__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

29.XS::getField

getField() 方法 public XSFieldMeta getField(mixed $name, bool $throw=true) $name mixed 字段名称(string) 或字段序号(vno, int) $throw bool 当字段不存在时是否抛出异常, 默认为 true {return} XSFieldMeta 字段元数据对象 源码: sdk/php/li...

30.XSComponent::__isset

__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);} 魔术方法 __...

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