index=self时,split分词器会执行,但是index=mixed时,split分词器就不会执行 这是怎么回事? 这是我字段内容 1=2&3=1&4=3-------------- 这是字段配置 [userinfo] tokenizer = split(&) type = string index = mixed 搜索1=2 分词器不执行,搜索userinfo:1=2 分词器才会...
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 即不检测, 若检...
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...
offsetSet() 方法 public void offsetSet(string $name, mixed $value) $name string 字段名称 $value mixed 字段值 源码: sdk/php/lib/XSDocument.class.php#L309 (显示) public function offsetSet($name, $value){ if (!is_null($name)) { $this->__set(strval($nam...
sendCommand() 方法 public void sendCommand(mixed $cmd) $cmd mixed 要提交的指令, 支持 XSCommand 实例或 cmd 构造函数的第一参数 源码: sdk/php/lib/XSServer.class.php#L321 (显示) public function sendCommand($cmd){ if (!$cmd instanceof XSCommand) { $...
...pe; 方法明细 __construct() 方法 public void __construct(mixed $type, $arg) $type mixed 对象参数, 常为 SQL 语句或要导入的文件路径 $arg 源码: sdk/php/util/XSDataSource.class.php#L30 (显示) public function __construct($type, $arg){ $this...
getField() 方法 public XSFieldMeta getField(mixed $name, bool $throw=true) $name mixed 字段名称(string) 或字段序号(vno, int) $throw bool 当字段不存在时是否抛出异常, 默认为 true {return} XSFieldMeta 字段元数据对象 源码: sdk/php/li...
__construct() 方法 public void __construct(mixed $type, $arg) $type mixed 对象参数, 常为 SQL 语句或要导入的文件路径 $arg 源码: sdk/php/util/XSDataSource.class.php#L30 (显示) public function __construct($type, $arg){ $this->type = $type; $thi...
query() 方法 public mixed query(string $sql) $sql string 要执行的 SQL 语句 {return} mixed 源码: sdk/php/util/XSDataSource.class.php#L843 (显示) public function query($sql){ //echo "[DEBUG] SQL: $sql\n"; $res = $this->obj->query($sql); if ($res === fa...