91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在PHP中使用swoole編寫一個echo服務器

發布時間:2021-03-20 16:06:29 來源:億速云 閱讀:199 作者:Leah 欄目:開發技術

怎么在PHP中使用swoole編寫一個echo服務器?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

server.php代碼如下:

<?php
class EchoServer {
  protected $serv = null;
 
  public function __construct() {
    $this->serv = new swoole_server('0.0.0.0', 8888);
    //配置參數
    $this->serv->set(array(
      'worker_num' => 4,
      'daemonize' => 0,
    ));
    //注冊回調函數
    $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'));
    //啟動服務
    $this->serv->start();
  }
 
  public function start($serv) {
    echo "start \n";
  }
 
  //有客戶端連接時
  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";
    //向客戶端發送信息
    $serv->send($fd, $data . "\n");
  }
}
 
$serv = new EchoServer();

client.php代碼如下:

<?php
class EchoClient {
  protected $client = null;
 
  public function __construct() {
    //注意這里需設置為異步,不然下面無法設置事件回調函數
    $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'));
    //連接服務端
    $this->client->connect('0.0.0.0', 8888);
  }
 
  public function connect($client) {
    echo "connect \n";
  }
 
  public function receive($client, $data) {
    echo "server send: {$data}";
 
    //向標準輸出寫入數據
    fwrite(STDOUT, "請輸入消息:");
    //獲取標準輸入數據
    $msg = trim(fgets(STDIN));
    //向服務端發送數據
    $client->send($msg);
  }
 
  public function close($client) {
    echo "close \n";
  }
 
  public function error($client) {
    echo "error \n";
  }
}
 
$cli = new EchoClient();

然后分別運行這兩個腳本

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

運行結果如下:

怎么在PHP中使用swoole編寫一個echo服務器

怎么在PHP中使用swoole編寫一個echo服務器

看完上述內容,你們掌握怎么在PHP中使用swoole編寫一個echo服務器的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保靖县| 大石桥市| 金山区| 北京市| 绥滨县| 乐安县| 如皋市| 德安县| 柘荣县| 南开区| 炎陵县| 阿拉善盟| 庆阳市| 新建县| 乐昌市| 朝阳区| 丰县| 太湖县| 武宣县| 古蔺县| 集安市| 昭平县| 轮台县| 中西区| 屯留县| 扎赉特旗| 日照市| 河源市| 莱西市| 嵩明县| 普兰县| 建水县| 聊城市| 呼伦贝尔市| 辽源市| 西和县| 宁都县| 平罗县| 南城县| 凤凰县| 桃园市|