http_server IP:0.0.0.0 port:9003外网不能访问吗?
来源:4-4 Swoole - HTTP服务(上)

qq_PPD_阳阳_04417543
2018-04-22
$http = new swoole_http_server("0.0.0.0", 9003);
/**
* HTTP 相应
*/
$http -> on("request", function ($request, $response){
$response -> end("<h1>Hello World</h1>");
});
$http -> start();
写回答
2回答
-
singwa
2018-04-23
你好。你用的服务器是阿里云的还是腾讯云的?
00 -
charset
2018-04-22
阿里云 腾讯云 去控制面板设置一下 入的 端口
00
相似问题