Swoole是一種PHP高階Web開發框架,可以提升網站的開發效率。本篇文章中小編將介紹如何用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
get 3.模擬http請求
$ sudo curl http://127.0.0.1:9501?param=1<h1>Hello Swoole.#1061</h1>
服務端列印get/ post請求資料
$ /usr/local/php/bin/php http_server.php array(1) { ["param"]=> string(1) "1"} NULL
4.結束進程
kill 952
相關教學:
以上是【swoole入門】如何快速建立一個網頁伺服器的詳細內容。更多資訊請關注PHP中文網其他相關文章!