EasySwoole 是一款基於Swoole Server 開發的常駐記憶體型PHP框架,專為API而生,擺脫傳統PHP運行模式在進程喚起和檔案載入上帶來的性能損失。 EasySwoole 高度封裝了Swoole Server 而依舊維持Swoole Server 原有特性,支援同時混合監聽HTTP、自訂TCP、UDP協議,讓開發者以最低的學習成本和精力編寫出多進程,可異步,高可用的應用服務。
1、環境需求
2、框架安裝
# 创建项目composer create-project easyswoole/app easyswoole# 进入项目目录并启动cd easyswoole php easyswoole start
推薦(免費):swoole
3、認識easyswoole框架的目錄結構
https://www.easyswoole.com/Manual/2.x/Cn/_book/Introduction/structure .html
4、新控制器
App\HttpController
是控制器目錄,我們新建一個User.php
,程式碼如下:
<?phpnamespace App\HttpController;use EasySwoole\Core\Http\AbstractInterface\Controller;class User extends Controller{ public function index() { $data['id'] = 101; $data['name'] = "jack"; $this->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"); } }
重新啟動項目,瀏覽器存取
#訪問http://10.211.55.17:9501/User/
就是訪問的http://10.211.55.17:9501/User/index
。說明控制器中index()
是預設方法。
以上是Swoole框架之easyswoole安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!