addQueryTerm() 方法 public XSSearch addQueryTerm(string $field, string $term, int $addOp=0, float $scale=1) $field string 索引词所属的字段, 若为混合区词汇可设为 null 或 body 型的字段名 $term string 索引词 (强制转为小写) $addOp int 与...
addQueryString() 方法 public string addQueryString(string $query, int $addOp=0, float $scale=1) $query string 搜索语句 $addOp int 与旧语句的结合操作符, 如果无旧语句或为空则这此无意义, 支持的操作符有: XS_CMD_QUERY_OP_AND XS_C...
query() 方法 public mixed query(string $sql) $sql string 要执行的 SQL 语句 {return} mixed 源码: sdk/php/util/XSDataSource.class.php#L722 (显示) public function query($sql){ //echo "[DEBUG] SQL: $sql\n"; $res = sqlite_query($this->link, $sql); if ($re...
...方法 public void __construct(mixed $cmd, int $arg1=0, int $arg2=0, string $buf='', string $buf1='') $cmd mixed 命令类型或命令数组 当类型为 int 表示命令代码, 范围是 1~255, 参见 xs_cmd.inc.php 里的定义 当类型为 array 时忽略其它参数, ...
...去继承来的属性 名称类型描述定义于 connString string 连接字符串 XSServer project string 获取当前项目名称 XSServer respond XSCommand 从服务器读取响应指令 XSServer socket mixed 获取连接资源描述符 XSSe...
..._charset = UTF-8 [aid] type = id [title] type = both [smalltitle] type = string [copyfrom] type = string [totalhit] type = string [keywords] type = string [sendtime] type = numeric 在添加索引时,文档中有说会自动转码,所以所有字段都不需要用iconv将gbk转为utf-8就...
字段设计有点问题。当type为string,没有指明index索引方式是是不分词的。 [title] type=string index=both 和 [title] type=title 这两个字段设计效果一样。同样content,类型也有问题,可以这样 [content] type=body 或者 [content] type=string index=mixed 具...
getName() 方法 public string getName() {return} string 当前项目名称 源码: sdk/php/lib/XS.class.php#L368 (显示) public function getName(){ return $this->_config['project.name'];} 获取当前项目名称
setDefaultCharset() 方法 public void setDefaultCharset(string $charset) $charset string 修改后的字符集 源码: sdk/php/lib/XS.class.php#L397 (显示) public function setDefaultCharset($charset){ $this->_config['project.default_charset'] = strtoupper($charset);} ...
setName() 方法 public void setName(string $name) $name string 项目名称 源码: sdk/php/lib/XS.class.php#L378 (显示) public function setName($name){ $this->_config['project.name'] = $name;} 修改当前项目名称 注意,必须在 getSearch 和 getIndex 前调用...