私人领地

swoole web服务

web.php

<?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>");
});

$http->start();

 效果如下

 

http访问:http://192.168.204.130:9501/?dds=333  即可访问,服务器端可以获取dds参数值

posted @ 2018-08-09 10:49  狂奔的蜗牛Snails  阅读(390)  评论(0编辑  收藏  举报