$errCode
$errCode :
函数执行错误会设置该变量
swoole_client
Author: EagleWu eaglewudi@gmail.com Date: 2016/02/17
connect(string $host, integer $port, float $timeout = 0.1, integer $flag) : boolean
连接到远程服务器
string | $host | 是远程服务器的地址 v1.6.10+ 支持填写域名 Swoole会自动进行DNS查询 |
integer | $port | 是远程服务器端口 |
float | $timeout | 是网络IO的超时,单位是s,支持浮点数。默认为0.1s,即100ms |
integer | $flag | 参数在UDP类型时表示是否启用udp_connect。设定此选项后将绑定$host与$port,此UDP将会丢弃非指定host/port的数据包。 在send/recv前必须使用swoole_client_select来检测是否完成了连接 |