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 接...
connect() 方法 abstract public void connect(array $param) $param array 连接参数, 采用 parse_url 解析, 可能包含: scheme,user,pass,host,path,table,dbname ... 源码: sdk/php/util/XSDataSource.class.php#L428 (显示) abstract public function connect($param); 连接...
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;} 判断...
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;} 判断当...
[quote='askie' pid='312' dateline='1323228058'] 我也遇到了同样问题! [/quote] 把type 设置成为 string 貌似是一种变通的方法
__toString() 方法 public string __toString() {return} string 字段名称 源码: sdk/php/lib/XSFieldScheme.class.php#L310 (显示) public function __toString(){ return $this->name;} 将对象转换为字符串
[quote='leeeboo' pid='4129' dateline='1300776583'] set_mutli() php扩展里是否有这个方法 Fatal error: Call to undefined method SimpleCWS::set_mutli() [/quote] 应该是set_multi(0)
getCharset() 方法 public mixed getCharset() {return} mixed 如果数据库不支持 UTF-8 转换则返回 false 源码: sdk/php/util/XSDataSource.class.php#L138 (显示) public function getCharset(){ if ($this->db->setUtf8()) { return 'UTF-8'; } return parent::g...
close() 方法 public void close() 源码: sdk/php/util/XSDataSource.class.php#L768 (显示) public function close(){ if ($this->obj) { $this->obj->close(); $this->obj = null; }} 关闭数据库
restoreScheme() 方法 public void restoreScheme() 源码: sdk/php/lib/XS.class.php#L346 (显示) public function restoreScheme(){ if ($this->_scheme !== $this->_bindScheme) { $this->_scheme = $this->_bindScheme; if ($this->_search !== null) { $this->_search->...