process() 方法 abstract public mixed process(array $data, mixed $cs=false) $data array 字段名和值组成的数据数组 $cs mixed 数据字符集, 默认 false 表示无法确定源字符集 {return} mixed 返回处理后的数据数组, 返回 false 表示本条...
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...
... XSDataFilter 方法明细 process() 方法 abstract public mixed process(array $data, mixed $cs=false) $data array 字段名和值组成的数据数组 $cs mixed 数据字符集, 默认 false 表示无法确定源字符集 {return} mixed 返回处理后的数...
convert() 方法 public static mixed convert(mixed $data, string $to, string $from) $data mixed 需要转换的数据, 支持 string 和 array, 数组会自动递归转换 $to string 转换后的字符集 $from string 转换前的字符集 {return} mixed 转换...
addRange() 方法 public XSSearch addRange(string $field, mixed $from, mixed $to) $field string $from mixed 起始值(不包含), 若设为 null 则相当于匹配 <= to (字典顺序) $to mixed 结束值(包含), 若设为 null 则相当于匹配 >= from (字典顺...
query() 方法 abstract public mixed query($sql) $sql {return} mixed 非 SELECT 语句返回执行结果(true/false), SELECT 语句返回所有结果行的数组 源码: sdk/php/util/XSDataSource.class.php#L439 (显示) abstract public function query($sql); 查询 S...
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));} 获取文档字段的值
getSocket() 方法 public mixed getSocket() {return} mixed 连接标识, 仅用于内部测试等目的 源码: sdk/php/lib/XSServer.class.php#L232 (显示) public function getSocket(){ return $this->_sock;} 获取连接资源描述符
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 接...
execCommand() 方法 public mixed execCommand(mixed $cmd, int $res_arg=0, int $res_cmd=128) $cmd mixed 要提交的指令, 若不是 XSCommand 实例则作为构造函数的第一参数创建对象 $res_arg int 要求的响应参数, 默认为 XS_CMD_NONE 即不检测, 若检...