swoole web服务

web.php

<?php
$http = new swoole_http_server("0.0.0.0", ); $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(, )."</h1>");
}); $http->start();

效果如下

swoole web服务

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

上一篇:纯js实现瀑布流布局及ajax动态新增数据


下一篇:JVM执行篇:使用HSDIS插件分析JVM代码执行细节--转