HttpServer
背景
swoole是异步、协程并行的通讯引擎,所以B/S架构网络引擎一定是会用到的。所以浏览器上访问自然少不了。
解决方案:
总结两点:
1、关闭防火墙
2、安全组放行对应端口
源码如下
<?php
//创建swoole的http_server服务
/**
1、 绑定的是127.0.0.1只能本机访问
2、 绑定为0.0.0.0其他电脑能访问到本机的服务
*/
$http = new Swoole\Http\Server("0.0.0.0", 9501);
//注册事件
$http->on("start", function ($server) { // 启动事件
echo "Swoole http server is started at http://8.134.49.245\n";
});
// http 请求事件
$http->on("request", function ($request, $response) {
$response->header("Content-Type", "text/plain");
$response->end("Hello World,Swoole study \n");
});
echo "start 前\n";
// 启动swoole的服务
$http->start();
echo "start end";