Client
Client
提供了TCP/UDP
socket
的客户端的封装代码,使用时仅需 new Swoole\Client
即可。
优势
stream
函数存在超时设置的陷阱和Bug
,一旦没处理好会导致Server
端长时间阻塞stream
函数的fread
默认最大8192
长度限制,无法支持UDP
的大包Client
支持waitall
,在有确定包长度时可一次取完,不必循环读取Client
支持UDP connect
,解决了UDP
串包问题Client
是纯C
的代码,专门处理socket
,stream
函数非常复杂。Client
性能更好Client
支持长连接
除了普通的同步阻塞+select
的使用方法外,Client
还支持异步非阻塞回调。
同步阻塞客户端
$client = new swoole_client(SWOOLE_SOCK_TCP);
if (!$client->connect('127.0.0.1', 9501, -1))
{
exit("connect failed. Error: {$client->errCode}\n");
}
$client->send("hello world\n");
echo $client->recv();
$client->close();
php-fpm/apache
环境下只能使用同步客户端apache
环境下仅支持prefork
多进程模式,不支持prework
多线程
异步非阻塞客户端
$client = new Swoole\Client(SWOOLE_SOCK_TCP, SWOOLE_SOCK_ASYNC);
$client->on("connect", function(swoole_client $cli) {
$cli->send("GET / HTTP/1.1\r\n\r\n");
});
$client->on("receive", function(swoole_client $cli, $data){
echo "Receive: $data";
$cli->send(str_repeat('A', 100)."\n");
sleep(1);
});
$client->on("error", function(swoole_client $cli){
echo "error\n";
});
$client->on("close", function(swoole_client $cli){
echo "Connection close\n";
});
$client->connect('127.0.0.1', 9501);
异步客户端只能使用在cli
命令行环境