學習SWOOLE之TCP客戶端

2021-10-02 21:57:13 字數 674 閱讀 4438

準備工作:

使用vmware軟體安裝centos7 安裝php7 和swoole擴充套件

<?php 

//建立tcp客戶端

$client =

new swoole\client

(swoole_sock_tcp);if

(!$client-

>

connect

('192.168.80.1'

,9505,-

1))\n");

}$client-

>

send

("hello world tcpserver\n");

echo $client-

>

recv()

;echo "send over"

;$client-

>

close()

;

使用網路助手搭建tcpserver

使用命令啟動tcp客戶端

swoole建立TCP服務端和客戶端

服務端 server.php 建立server物件,監聽 127.0.0.1 9501埠 serv new swoole server 127.0.0.1 9501 監聽連線進入事件 serv on connect function serv,fd 監聽資料接收事件 serv on receive ...

TCP通訊(客戶端)

修改自網路 include include include pragma comment lib,ws2 32.lib int client void unsigned short port int main int argc,char argv int client void if isockcl...

使用swoole實現udp客戶端

udp客戶端 co run function n 關閉已有socket client close 重試 client connect 127.0.0.1 19501 獲取連線狀態,true為已經連線到伺服器,false未連線到伺服器 client isconnected 傳送資料,當為true時表示...