搜索

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

31.XSDataSource::instance

instance() 方法 public static XSDataSource instance(string $type, mixed $arg=NULL) $type string 数据源类型, 如: mysql://.., json, csv ... $arg mixed 建立对象的参数, 如 SQL 语句, JSON/CSV 文件 {return} XSDataSource 初始化完毕的数据源对象 ...

32.XSDatabaseMySQL::query

query() 方法 public mixed query(string $sql) $sql string 要执行的 SQL 语句 {return} mixed 源码: sdk/php/util/XSDataSource.class.php#L511 (显示) public function query($sql){ //echo "[DEBUG] SQL: $sql\n"; $res = mysql_query($sql, $this->link); if ($res...

33.XSComponent

... __unset XSComponent 方法明细 __get() 方法 public mixed __get(string $name) $name string 属性名称 {return} mixed 属性值 源码: sdk/php/lib/XS.class.php#L182 (显示) public function __get($name){ $getter = 'get' . $name; if (method_exists($th...

34.XSComponent::__set

__set() 方法 public void __set(string $name, mixed $value) $name string 属性名称 $value mixed 属性值 源码: sdk/php/lib/XS.class.php#L202 (显示) public function __set($name, $value){ $setter = 'set' . $name; if (method_exists($this, $setter)) { re...

35.XSDataSource::getData

getData() 方法 final public mixed getData() {return} mixed 返回一条完整数据, 若无数据则返回 false 源码: sdk/php/util/XSDataSource.class.php#L65 (显示) final public function getData(){ if ($this->dataPos === null || $this->dataPos === count($this->dataList)...

36.XSDatabaseSQLite3::query

query() 方法 public mixed query(string $sql) $sql string 要执行的 SQL 语句 {return} mixed 源码: sdk/php/util/XSDataSource.class.php#L781 (显示) public function query($sql){ //echo "[DEBUG] SQL: $sql\n"; $res = $this->obj->query($sql); if ($res === fa...

37.XSFieldScheme::getField

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

38.XSDocument::__construct

__construct() 方法 public void __construct(mixed $p=NULL, string $d=NULL) $p mixed 字符串表示索引文档的编码或搜索结果文档的 meta 数据, 数组则表示或索引文档的初始字段数据 $d string 可选参数, 当 $p 不为编码时, 本参数表示数...

39.XSServer

...spond XSCommand 从服务器读取响应指令 XSServer socket mixed 获取连接资源描述符 XSServer xs XS 服务端关联的 XS 对象 XSServer Protected 属性 隐去继承来的属性 名称类型描述定义于 _conn XSServer _f...

40.XSSearch::setFacets

...ets() 方法 (自版本 v1.1.0 起可用) public XSSearch setFacets(mixed $field, bool $exact=false) $field mixed 要进行分组统计的字段或字段组成的数组, 最多同时支持 8 个 $exact bool 是否要求绝对精确搜索, 这会造成较大的系统开销 ...

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