搜索

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

1.XSServer::write

...len = $size = strlen($buf)) == 0) { return true; } // loop to send data $this->check(); while (true) { $bytes = fwrite($this->_sock, $buf, $len); if ($bytes === false || $bytes === 0 || $bytes === $len) { break; } $len -= $bytes; $buf ...

2.XSServer::read

...urn for zero size if ($len == 0) { return ''; } // loop to send data $this->check(); for ($buf = '', $size = $len;;) { $bytes = fread($this->_sock, $len); if ($bytes === false || strlen($bytes) == 0) { break; } $len -= strlen($bytes); ...

3.XSServer::execCommand

...he cmd for those need not answer if ($cmd->cmd & 0x80) { $this->_sendBuffer .= $cmd; return true; } // send cmd to server $buf = $this->_sendBuffer . $cmd; $this->_sendBuffer = ''; $this->write($buf); // return true directly for local file if ($this->_flag & sel...

4.XSServer

... XSServer _flag XSServer _project XSServer _sendBuffer XSServer _sock XSServer Public 方法 隐去继承来的方法 名称描述定义于 __construct() 构造函数, 打开连接 XSServer __destruct() 析构函...

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