您好,登錄后才能下訂單哦!
小編給大家分享一下EasySwoole如何安裝使用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
EasySwoole
EasySwoole 是一款基于Swoole Server 開發的常駐內存型的分布式PHP框架,專為API而生,擺脫傳統PHP運行模式在進程喚起和文件加載上帶來的性能損失。 EasySwoole 高度封裝了 Swoole Server 而依舊維持 Swoole Server 原有特性,支持同時混合監聽HTTP、自定義TCP、UDP協議,讓開發者以最低的學習成本和精力編寫出多進程,可異步,高可用的應用服務
安裝
保證 PHP 版本大于等于 7.1
保證 Swoole 拓展版本大于等于 4.4.15
需要 pcntl 拓展的任意版本
使用 Linux / FreeBSD / MacOS 這三類操作系統
使用 Composer 作為依賴管理工具
composer require easyswoole/easyswoole=3.x
php vendor/easyswoole/easyswoole/bin/easyswoole install
新版的easyswoole安裝會默認提供App命名空間,還有index控制器
在這里面需要填寫n,不需要覆蓋,已經有的 EasySwooleEvent.php
,index.php
dev.php
produce.php
當提示exec函數被禁用時,請自己手動執行 composer dump-autoload
命令更新命名空間
進入項目根目錄執行程序,項目執行成功,訪問頁面
php easyswoole start
HTTP
HttpController
為控制器根目錄,訪問會根據url自動映射到此目錄的控制器中,Index
作為默認控制器,index
為默認方法
訪問http://192.168.88.16:9501
地址為默認訪問到index.php
控制器中index
方法,即http://192.168.88.16:9501/index/index
地址與tp框架的訪問相類似
我們在index
控制器中新建一個hello
方法,打印hello world
,重新啟動項目,訪問http://192.168.88.16:9501/hello
和http://192.168.88.16:9501/index/hello
頁面都會打印hello world
<?phpnamespace App\HttpController;use EasySwoole\Http\AbstractInterface\Controller;class Index extends Controller{ public function hello(){ $this->response()->write('hello world'); } public function index() { $file = EASYSWOOLE_ROOT.'/vendor/easyswoole/easyswoole/src/Resource/Http/welcome.html'; if(!is_file($file)){ $file = EASYSWOOLE_ROOT.'/src/Resource/Http/welcome.html';//歡迎頁面 } $this->response()->write(file_get_contents($file)); } protected function actionNotFound(?string $action) { $this->response()->withStatus(404); $file = EASYSWOOLE_ROOT.'/vendor/easyswoole/easyswoole/src/Resource/Http/404.html'; if(!is_file($file)){ $file = EASYSWOOLE_ROOT.'/src/Resource/Http/404.html'; } $this->response()->write(file_get_contents($file)); }}
WebSocket
WebSocket協議在傳統的phpweb框架就不適用了,在php中基本就使用workerman和swoole去解決這種場景,在easyswoole框架即是swoole的封裝
在dev.php
配置文件,將服務類型SERVER_TYPE
修改為EASYSWOOLE_WEB_SOCKET_SERVER
,進行WebSocket
通訊,EasySwooleEvent.php
文件中,新增主服務增加onMessage事件監聽消息
<?phpnamespace EasySwoole\EasySwoole;use EasySwoole\EasySwoole\Swoole\EventRegister;use EasySwoole\EasySwoole\AbstractInterface\Event;use EasySwoole\Http\Request;use EasySwoole\Http\Response;class EasySwooleEvent implements Event{ public static function initialize() { // TODO: Implement initialize() method. date_default_timezone_set('Asia/Shanghai'); } public static function mainServerCreate(EventRegister $register) { // TODO: Implement mainServerCreate() method.\ $register->set(EventRegister::onMessage,function (\swoole_websocket_server $server, \swoole_websocket_frame $frame){ var_dump($frame); }); } public static function onRequest(Request $request, Response $response): bool { // TODO: Implement onRequest() method. return true; } public static function afterRequest(Request $request, Response $response): void { // TODO: Implement afterAction() method. }}
使用easyswoole的測試工具進行連接測試
WebSocket控制器
在WebSocket,一般都是在一個onmessage中寫響應代碼,業務復雜的情況下一個方法中非常的冗長,easyswoole提供一種類似控制器方式的寫法,這里已官方的例子為例:
安裝拓展包
composer require easyswoole/socket
dev.php
,修改SERVER_TYPE
為:
‘SERVER_TYPE’ => EASYSWOOLE_WEB_SOCKET_SERVER,
注冊服務:
public static function mainServerCreate(EventRegister $register): void{ /** * **************** websocket控制器 ********************** */ // 創建一個 Dispatcher 配置 $conf = new \EasySwoole\Socket\Config(); // 設置 Dispatcher 為 WebSocket 模式 $conf->setType(\EasySwoole\Socket\Config::WEB_SOCKET); // 設置解析器對象 $conf->setParser(new WebSocketParser()); // 創建 Dispatcher 對象 并注入 config 對象 $dispatch = new Dispatcher($conf); // 給server 注冊相關事件 在 WebSocket 模式下 on message 事件必須注冊 并且交給 Dispatcher 對象處理 $register->set(EventRegister::onMessage, function (\swoole_websocket_server $server, \swoole_websocket_frame $frame) use ($dispatch) { $dispatch->dispatch($server, $frame->data, $frame); });}
創建App/WebSocket/WebSocketParser.php
文件
namespace App\WebSocket;use EasySwoole\Socket\AbstractInterface\ParserInterface;use EasySwoole\Socket\Client\WebSocket;use EasySwoole\Socket\Bean\Caller;use EasySwoole\Socket\Bean\Response;/** * Class WebSocketParser * * 此類是自定義的 websocket 消息解析器 * 此處使用的設計是使用 json string 作為消息格式 * 當客戶端消息到達服務端時,會調用 decode 方法進行消息解析 * 會將 websocket 消息 轉成具體的 Class -> Action 調用 并且將參數注入 * * @package App\WebSocket */class WebSocketParser implements ParserInterface{ /** * decode * @param string $raw 客戶端原始消息 * @param WebSocket $client WebSocket Client 對象 * @return Caller Socket 調用對象 */ public function decode($raw, $client) : ? Caller { // 解析 客戶端原始消息 $data = json_decode($raw, true); if (!is_array($data)) { echo "decode message error! \n"; return null; } // new 調用者對象 $caller = new Caller(); /** * 設置被調用的類 這里會將ws消息中的 class 參數解析為具體想訪問的控制器 * 如果更喜歡 event 方式 可以自定義 event 和具體的類的 map 即可 * 注 目前 easyswoole 3.0.4 版本及以下 不支持直接傳遞 class string 可以通過這種方式 */ $class = '\\App\\WebSocket\\'. ucfirst($data['class'] ?? 'Index'); $caller->setControllerClass($class); // 提供一個事件風格的寫法// $eventMap = [// 'index' => Index::class// ];// $caller->setControllerClass($eventMap[$data['class']] ?? Index::class); // 設置被調用的方法 $caller->setAction($data['action'] ?? 'index'); // 檢查是否存在args if (!empty($data['content'])) { // content 無法解析為array 時 返回 content => string 格式 $args = is_array($data['content']) ? $data['content'] : ['content' => $data['content']]; } // 設置被調用的Args $caller->setArgs($args ?? []); return $caller; } /** * encode * @param Response $response Socket Response 對象 * @param WebSocket $client WebSocket Client 對象 * @return string 發送給客戶端的消息 */ public function encode(Response $response, $client) : ? string { /** * 這里返回響應給客戶端的信息 * 這里應當只做統一的encode操作 具體的狀態等應當由 Controller處理 */ return $response->getMessage(); }}
創建App/WebSocket/Index.php文件
composer require easyswoole/task
<?php/** * Created by PhpStorm. * User: Apple * Date: 2018/11/1 0001 * Time: 14:42 */namespace App\WebSocket;use EasySwoole\EasySwoole\ServerManager;use EasySwoole\EasySwoole\Task\TaskManager;use EasySwoole\Socket\AbstractInterface\Controller;/** * Class Index * * 此類是默認的 websocket 消息解析后訪問的 控制器 * * @package App\WebSocket */class Index extends Controller{ function hello() { $this->response()->setMessage('call hello with arg:'. json_encode($this->caller()->getArgs())); } public function who(){ $this->response()->setMessage('your fd is '. $this->caller()->getClient()->getFd()); } function delay() { $this->response()->setMessage('this is delay action'); $client = $this->caller()->getClient(); // 異步推送, 這里直接 use fd也是可以的 TaskManager::getInstance()->async(function () use ($client){ $server = ServerManager::getInstance()->getSwooleServer(); $i = 0; while ($i < 5) { sleep(1); $server->push($client->getFd(),'push in http at '. date('H:i:s')); $i++; } }); }}
用websocket
測試工具進行測試,進行提交的json
自動到相應的控制器方法中進行處理
看完了這篇文章,相信你對“EasySwoole如何安裝使用”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。