swoole笔记03(搭建http服务器)

通常情况下:     http请求->nginx服务器->fast-cgi->php->php-fpm->返回给浏览器

使用swoole后: http请求->swoole

swoole笔记03(搭建http服务器)_第1张图片

http_server.php代码如下:

swoole笔记03(搭建http服务器)_第2张图片

1 开启http服务器 php  http_server.php

2  客户端 curl方法访问 curl  127.0.0.1:881?m=1   (或者浏览器直接访问ip地址,注意end方法的内容才能显示到浏览器中)

        客户端显示如下

        服务器端显示如下

设置参数,直接访问html页面不触发回调函数

    服务器端代码如下

swoole笔记03(搭建http服务器)_第3张图片

        curl访问127.0.0.1:8811/webstocket_client.html,系统会先去data目录下找webstocket_client.html,找不到才会调用回调函数

        我们可以用 curl http://127.0.0.1:8811/webstocket_client.html或者浏览器直接访问http://112.74.161.233:8811/webstocket_client.html

你可能感兴趣的:(swoole笔记03(搭建http服务器))