您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍Swoole中快速创建一个web服务器的方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
Swoole是一种PHP高级Web开发框架,可以提升网站的开发效率。
http_server.php
$http = new swoole_http_server("0.0.0.0", 9501); // 请求监听事件 $http->on('request', function ($request, $response) { var_dump($request->get, $request->post); $response->header('Content-type', 'text/html;charset=utf-8'); $response->end("<h2>Hello Swoole.#" . rand(1000, 9999) . "</h2>\n"); }); $http->start();
0.0.0.0
表示监听所有IP地址,一台服务器可能同时有多个IP,如127.0.0.1
本地回环IP、192.168.1.100
局域网IP、210.127.20.2
外网IP,这里也可以单独指定监听一个IP。
1.启动服务
$ /usr/local/php/bin/php http_server.php
2.启动服务成功后,netstat查看
$ ps aux | grep http_server oosten 952 0.0 2.2 314544 23176 pts/3 Sl+ 14:17 0:00 /usr/local/php/bin/php http_server.php oosten 953 0.0 0.4 240212 4132 pts/3 S+ 14:17 0:00 /usr/local/php/bin/php http_server.php oosten 955 0.0 0.7 242620 7408 pts/3 S+ 14:17 0:00 /usr/local/php/bin/php http_server.php
3.模拟http请求
$ sudo curl http://127.0.0.1:9501?param=1<h2>Hello Swoole.#1061</h2>
服务端打印get/post请求数据
$ /usr/local/php/bin/php http_server.php array(1) { ["param"]=> string(1) "1"} NULL
4.结束进程
kill 952
以上是Swoole中快速创建一个web服务器的方法的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。