Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
client.php 352 Bytes
Copy Edit Raw Blame History
seven authored 2021-08-18 17:05 . 代码上传
<?php
$client = new swoole_client(SWOOLE_SOCK_TCP);
if (!$client->connect('127.0.0.1', 9501, -1))
{
exit("connect failed. Error: {$client->errCode}\n");
}
//邮件发送类型 1:群发;2:单条
$type=2;
//发送消息给服务器
$client->send(json_encode($type));
//接收服务器返回信息
echo $client->recv();
//关闭
$client->close();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化