美文网首页
swoole 文档扫描

swoole 文档扫描

作者: 蛐蛐儿阳 | 来源:发表于2020-04-23 21:12 被阅读0次

    udp我们试过了,这个不太熟悉,我们试下http协议

    $http = new Swoole\Http\Server("0.0.0.0", 60011);
    
    $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();
    

    我只把端口改了,我docker没映射9501端口。直接访问
    http://127.0.0.1:60011/
    可以看到
    Hello Swoole. #1143
    证明没问题。

    文档里的一句话,证明我上次tcp协议不通问题,确实是ip问题。

    0.0.0.0 表示监听所有 IP 地址,一台服务器可能同时有多个 IP,如 127.0.0.1 本地回环 IP、192.168.1.100 局域网 IP、210.127.20.2 外网 IP,这里也可以单独指定监听一个 IP

    websocket 也是通的就不贴源码了。


    image.png

    相关文章

      网友评论

          本文标题:swoole 文档扫描

          本文链接:https://www.haomeiwen.com/subject/xjdrvhtx.html