swoole 建立web服務器

http_server.phpphp

$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。html

  1.啓動服務服務器

$ /usr/local/php/bin/php http_server.php 

  2.啓動服務成功後,netstat查看swoole

$ 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請求curl

$ sudo curl http://127.0.0.1:9501?param=1
<h1>Hello Swoole.#1061</h1>

  服務端打印get/post請求數據post

$ /usr/local/php/bin/php http_server.php 
array(1) { ["param"]=> string(1) "1" } NULL

  4.結束進程url

kill 952

 

 

參考:https://wiki.swoole.com/wikispa

相關文章
相關標籤/搜索