当前位置:  开发笔记 > 编程语言 > 正文

Swoole框架之easyswoole安装

EasySwoole是一款基于SwooleServer开发的常驻内存型PHP框架,专为API而生,本栏目将详细介绍,有需要的朋友看看。

2、框架安装

# 创建项目composer create-project easyswoole/app easyswoole# 进入项目目录并启动cd easyswoole
php easyswoole start

推荐(免费):swoole

App\HttpController 是控制器目录,我们新建一个User.php,代码如下:

response()->withHeader('Content-type','application/json;charset=utf-8');        $this->response()->write(json_encode($data));
    }    public function test()
    {
        $this->response()->write("test method for the User Controller");
    }
}

重新启动项目,浏览器访问

以上就是Swoole框架之easyswoole安装的详细内容,更多请关注其它相关文章!

推荐阅读
依然-狠幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有