搜索

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

1.XSCommand.arg1

arg1 属性 public int $arg1; 参数1 取值范围 0~255, 具体含义根据不同的 CMD 而变化

2.XSCommand::__construct

__construct() 方法 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 时忽...

3.XSCommand

...型描述定义于 arg int 获取属性 arg 的值 XSCommand arg1 int 参数1 取值范围 0~255, 具体含义根据不同的 CMD 而变化 XSCommand arg2 int 参数2 取值范围 0~255, 常用于存储 value no, 具体参照不同 CMD 而确定 XSCommand buf stri...

4.API里包含未定义变量

发布时间:2011-11-15 20:11 t By dancebear

zendstudio下提示1051行包含未定义变量即$arg1未定义 $cmds[] = new XSCommand(CMD_DOC_INDEX, $arg1, $field->vno, $text);

5.XSSearch::setSynonymScale

...arch.class.php#L147 (显示) public function setSynonymScale($value){ $arg1 = XS_CMD_SEARCH_MISC_SYN_SCALE; $arg2 = max(0, (intval($value * 100) & 255)); $cmd = new XSCommand(XS_CMD_SEARCH_SET_MISC, $arg1, $arg2); $this->execCommand($cmd); return $this;} 设置同义词搜索的...

6.XSSearch::setRequireMatchedTerm

...p#L114 (显示) public function setRequireMatchedTerm($value = true){ $arg1 = XS_CMD_SEARCH_MISC_MATCHED_TERM; $arg2 = $value === true ? 1 : 0; $cmd = new XSCommand(XS_CMD_SEARCH_SET_MISC, $arg1, $arg2); $this->execCommand($cmd); return $this;} 设置在搜索结果文档中返...

7.XSCommand::getArg

getArg() 方法 public int getArg() {return} int 参数值 源码: sdk/php/lib/XSServer.class.php#L95 (显示) public function getArg(){ return $this->arg2 | ($this->arg1 << 8);} 获取属性 arg 的值

8.XSCommand::setArg

setArg() 方法 public void setArg(int $arg) $arg int 参数值 源码: sdk/php/lib/XSServer.class.php#L104 (显示) public function setArg($arg){ $this->arg1 = ($arg >> 8) & 0xff; $this->arg2 = $arg & 0xff;} 设置属性 arg 的值

9.RE: API里包含未定义变量

更新时间:2011-11-16 11:11 t By hightman

多谢指出,稍后会进行修正 此外 $arg1 应为 $wdf

10.XSIndex::setCustomDict

...setCustomDict($content){ $cmd = array('cmd' => XS_CMD_INDEX_USER_DICT, 'arg1' => 1, 'buf' => $content); $this->execCommand($cmd, XS_CMD_OK_DICT_SAVED);} 设置自定义词典内容

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