Home>Article>PHP Framework> Swoole framework easyswoole installation
EasySwoole is a memory-resident PHP framework developed based on Swoole Server. It is designed for APIs and breaks away from the traditional PHP operating mode to bring convenience to process arousal and file loading. performance loss. EasySwoole highly encapsulates Swoole Server while still maintaining the original features of Swoole Server. It supports simultaneous monitoring of HTTP, customized TCP, and UDP protocols, allowing developers to write multi-process, asynchronous, and highly available applications with the lowest learning cost and effort. Serve.
1. Environmental requirements
2.Framework installation
# 创建项目composer create-project easyswoole/app easyswoole# 进入项目目录并启动cd easyswoole php easyswoole start
Recommended (free):swoole
3. Understand the directory structure of the easyswoole framework
https://www.easyswoole.com/Manual/2.x/Cn/_book/Introduction/structure .html
4. Create a new controller
##App\HttpControlleris the controller directory, we create a new one
User.php, the code is as follows:
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"); } }Restart the project, browser access
http://10.211.55.17:9501/User/Just visit
http://10.211.55.17:9501/User/index. Note that
index()in the controller is the default method.
The above is the detailed content of Swoole framework easyswoole installation. For more information, please follow other related articles on the PHP Chinese website!