Swoole学习之网络通信引擎Web服务(四)

一、HTTP服务

HTTP服务端

我们看Swoole官方文档入门指引->快速起步->创建Web服务器,把文档的示例代码跑一次,看下效果:

http_server.php

on('request', function ($request, $response) {
    var_dump($request->get, $request->post);

    // cookie测试
    // $response->cookie('name', 'lily', time()+3600);
    $response->header("Content-Type", "text/html; charset=utf-8");
    $response->end("

Hello Swoole. #".rand(1000, 9999)."

"); }); $http->start();

打开一个窗口,访问该服务:

root@5ee6bfcc1310:~# curl http://127.0.0.1:9501

Hello Swoole. #9147

root@5ee6bfcc1310:~# curl http://127.0.0.1:9501?act=all

Hello Swoole. #4674

root@5ee6bfcc1310:~#

Http服务器只需要关注请求响应即可,所以只需要监听一个onRequest事件。当有新的Http请求进入就会触发此事件。事件回调函数有2个参数,一个是$request对象,包含了请求的相关信息,如GET/POST请求的数据。

另外一个是response对象,对request的响应可以通过操作response对象来完成。$response->end()方法表示输出一段HTML内容,并结束此请求。

  • 0.0.0.0 表示监听所有IP地址,一台服务器可能同时有多个IP,如127.0.0.1本地回环IP、192.168.1.100局域网IP、210.127.20.2 外网IP,这里也可以单独指定监听一个IP
  • 9501 监听的端口,如果被占用程序会抛出致命错误,中断执行。

静态内容

当为静态页面如 test.html 时,不走php逻辑,需要我们这里做特殊的配置

set([
    'enable_static_handle' => true,
    'document_root' => "/work/study/code/swoole/static" // 存放静态资源路径
]);

$http->on('request', function ($request, $response) {
    var_dump($request->get, $request->post);

    // cookie测试
    // $response->cookie('name', 'lily', time()+3600);
    $response->header("Content-Type", "text/html; charset=utf-8");
    $response->end("

Hello Swoole. #".rand(1000, 9999)."

"); }); $http->start();

你可能感兴趣的:(http,php,swoole)