国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

PHP使用swoole編寫簡單的echo服務(wù)器示例

瀏覽:129日期:2022-09-11 10:03:07

本文實(shí)例講述了PHP使用swoole編寫簡單的echo服務(wù)器。分享給大家供大家參考,具體如下:

server.php代碼如下:

<?phpclass EchoServer { protected $serv = null; public function __construct() { $this->serv = new swoole_server(’0.0.0.0’, 8888); //配置參數(shù) $this->serv->set(array( ’worker_num’ => 4, ’daemonize’ => 0, )); //注冊回調(diào)函數(shù) $this->serv->on(’start’, array($this, ’start’)); $this->serv->on(’connect’, array($this, ’connect’)); $this->serv->on(’receive’, array($this, ’receive’)); $this->serv->on(’close’, array($this, ’close’)); //啟動(dòng)服務(wù) $this->serv->start(); } public function start($serv) { echo 'start n'; } //有客戶端連接時(shí) public function connect($serv, $fd) { echo 'connect n'; $serv->send($fd, 'hello n'); } public function close($serv, $fd) { echo 'close n'; } public function receive($serv, $fd, $from_id, $data) { echo 'get message {$fd} : {$data} n'; //向客戶端發(fā)送信息 $serv->send($fd, $data . 'n'); }} $serv = new EchoServer();

client.php代碼如下:

<?phpclass EchoClient { protected $client = null; public function __construct() { //注意這里需設(shè)置為異步,不然下面無法設(shè)置事件回調(diào)函數(shù) $this->client = new swoole_client(SWOOLE_SOCK_TCP, SWOOLE_SOCK_ASYNC); $this->client->on(’connect’, array($this, ’connect’)); $this->client->on(’receive’, array($this, ’receive’)); $this->client->on(’close’, array($this, ’close’)); $this->client->on(’error’, array($this, ’error’)); //連接服務(wù)端 $this->client->connect(’0.0.0.0’, 8888); } public function connect($client) { echo 'connect n'; } public function receive($client, $data) { echo 'server send: {$data}'; //向標(biāo)準(zhǔn)輸出寫入數(shù)據(jù) fwrite(STDOUT, '請輸入消息:'); //獲取標(biāo)準(zhǔn)輸入數(shù)據(jù) $msg = trim(fgets(STDIN)); //向服務(wù)端發(fā)送數(shù)據(jù) $client->send($msg); } public function close($client) { echo 'close n'; } public function error($client) { echo 'error n'; }} $cli = new EchoClient();

然后分別運(yùn)行這兩個(gè)腳本

> /data/php56/bin/php server.php> /data/php56/bin/php client.php

運(yùn)行結(jié)果如下:

PHP使用swoole編寫簡單的echo服務(wù)器示例

PHP使用swoole編寫簡單的echo服務(wù)器示例

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《php socket用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》及《php程序設(shè)計(jì)算法總結(jié)》

希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。

標(biāo)簽: PHP
相關(guān)文章:
主站蜘蛛池模板: 七台河市| 凌云县| 大洼县| 夏邑县| 高安市| 龙口市| 沙河市| 聂拉木县| 江西省| 贵德县| 民丰县| 阳新县| 远安县| 盘山县| 泸州市| 阿城市| 皋兰县| 上林县| 交城县| 化州市| 孟津县| 平利县| 西平县| 九寨沟县| 南靖县| 新津县| 都安| 红桥区| 大同市| 巨野县| 泰安市| 桃园县| 乌拉特前旗| 绍兴县| 汉川市| 兰州市| 彭泽县| 南投县| 双城市| 北票市| 进贤县|