搜索

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

1.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 的值

2.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 的值

3.XSCommand.arg

arg 属性 public int getArg()public void setArg(int $arg) 获取属性 arg 的值

4.XSCommand.arg1

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

5.XSCommand.arg2

arg2 属性 public int $arg2; 参数2 取值范围 0~255, 常用于存储 value no, 具体参照不同 CMD 而确定

6.XSCommand.buf

buf 属性 public string $buf; 主数据内容, 最长 2GB

7.XSCommand.buf1

buf1 属性 public string $buf1; 辅数据内容, 最长 255字节

8.XSCommand.cmd

cmd 属性 public int $cmd; 命令代码 通常是预定义常量 XS_CMD_xxx, 取值范围 0~255

9.XSCommand

XSCommand All Packages | 属性 | 方法(函数) 包 XS 继承关系 class XSCommand » XSComponent 版本 1.0.0 源代码 sdk/php/lib/XSServer.class.php XSCommand 命令对象 是与服务端交互的最基本单位, 命令对象可自动转换为通讯字符串...

10.XSCommand::__toString

__toString() 方法 public string __toString() {return} string 用于服务端交互的字符串 源码: sdk/php/lib/XSServer.class.php#L83 (显示) public function __toString(){ if (strlen($this->buf1) > 0xff) { $this->buf1 = substr($this->buf1, 0, 0xff); } retur...

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