這篇文章帶給大家的內容是關於swoole創建web伺服器的方法介紹(程式碼範例),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
http_server.php
$http = new swoole_http_server("0.0.0.0", 9501); // 请求监听事件 $http->on('request', function ($request, $response) { var_dump($request->get, $request->post); $response->header('Content-type', 'text/html;charset=utf-8'); $response->end("<h1>Hello Swoole.#" . rand(1000, 9999) . "</h1>\n"); }); $http->start();
0.0.0.0 表示監聽所有IP位址,一台伺服器可能同時有多個IP,如127.0.0.1本地回環IP、192.168.1.100區域網路IP、210.127.20.2 外網IP,這裡也可以單獨指定監聽一個IP。
1、啟動服務
$ /usr/local/php/bin/php http_server.php
2、啟動服務成功後,netstat檢視
$ ps aux | grep http_server oosten 952 0.0 2.2 314544 23176 pts/3 Sl+ 14:17 0:00 /usr/local/php/bin/php http_server.php oosten 953 0.0 0.4 240212 4132 pts/3 S+ 14:17 0:00 /usr/local/php/bin/php http_server.php oosten 955 0.0 0.7 242620 7408 pts/3 S+ 14:17 0:00 /usr/local/php/bin/php http_server.php
3、模擬http請求
$ sudo curl 4a249f0d628e2318394fd9b75b4636b1Hello Swoole.#1061473f0a7621bec819994bb5020d29372a
#服務端列印get/post請求資料
$ /usr/local/php/bin/php http_server.php array(1) { ["param"]=> string(1) "1" } NULL
4、結束進程
kill 952
以上是swoole創建web伺服器的方法介紹(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!