14、Workerman案例1-Http服務

highhand發表於2021-09-09

1、執行環境

  • php版本>5.3

  • workerman版本為3.5.16

  • 採用原始碼安裝Workerman

  • ip為192.168.0.55

2、http服務程式碼 start_http.php

<?php

require_once __DIR__ . ‘/Autoloader.php’;

use WorkermanWorker;

$http_worker = new Worker(“”);

$http_worker->onMessage = function($connection, $data){

$connection->send(“hello world.rn”);

};

Worker::runAll();

3、啟動

  • php start_http.php start

圖片描述

  • 訪問http服務

圖片描述

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/810/viewspace-2822899/,如需轉載,請註明出處,否則將追究法律責任。

相關文章