您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Swoole的應用示例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Swoole概述
我們都知道HTTP是一種協議,允許WEB服務器和瀏覽器通過互聯網進行發送和接受數據。
想對HTTP進行詳細的了解,可以找下其他文章,這篇文章不多做介紹。
我們在網上能看到的界面,圖片,動畫,音頻,視頻等,都有依賴這個協議的。
在做WEB系統的時候,都使用過IIS,Apache,Nginx吧,我們利用Swoole也可以簡單的實現一個WEB服務器。
主要使用了HTTP的兩個大對象:Request請求對象,Response響應對象。
請求,包括GET,POST,COOKIE,Header等。
響應,包括狀態,響應體,擴展,發送文件等。
不多說,先分享兩個程序:
一,實現一個基礎的Demo:“你好,Swoole。”
二,實現一個簡單的路由控制
本地版本:
PHP 7.2.6
旋風4.3.1
代碼
一,Demo:“你好,Swoole。”
示例效果:
備注:IP地址是我的虛擬機。
示例代碼:
<?php class Server { private $serv; public function __construct() { $this->serv = new swoole_http_server("0.0.0.0", 9502); $this->serv->set([ 'worker_num' => 2, //開啟2個worker進程 'max_request' => 4, //每個worker進程 max_request設置為4次 'daemonize' => false, //守護進程(true/false) ]); $this->serv->on('Start', [$this, 'onStart']); $this->serv->on('WorkerStart', [$this, 'onWorkStart']); $this->serv->on('ManagerStart', [$this, 'onManagerStart']); $this->serv->on("Request", [$this, 'onRequest']); $this->serv->start(); } public function onStart($serv) { echo "#### onStart ####".PHP_EOL; echo "SWOOLE ".SWOOLE_VERSION . " 服務已啟動".PHP_EOL; echo "master_pid: {$serv->master_pid}".PHP_EOL; echo "manager_pid: {$serv->manager_pid}".PHP_EOL; echo "########".PHP_EOL.PHP_EOL; } public function onManagerStart($serv) { echo "#### onManagerStart ####".PHP_EOL.PHP_EOL; } public function onWorkStart($serv, $worker_id) { echo "#### onWorkStart ####".PHP_EOL.PHP_EOL; } public function onRequest($request, $response) { $response->header("Content-Type", "text/html; charset=utf-8"); $html = "<h2>你好 Swoole.</h2>"; $response->end($html); } } $server = new Server();
二,路由控制
示例效果:
目錄結構:
├─ swoole_http -- 代碼根目錄 │ ├─ server.php │ ├─ controller │ ├── Index.php │ ├── Login.php
示例代碼:
server.php
<?php class Server { private $serv; public function __construct() { $this->serv = new swoole_http_server("0.0.0.0", 9501); $this->serv->set([ 'worker_num' => 2, //開啟2個worker進程 'max_request' => 4, //每個worker進程 max_request設置為4次 'document_root' => '', 'enable_static_handler' => true, 'daemonize' => false, //守護進程(true/false) ]); $this->serv->on('Start', [$this, 'onStart']); $this->serv->on('WorkerStart', [$this, 'onWorkStart']); $this->serv->on('ManagerStart', [$this, 'onManagerStart']); $this->serv->on("Request", [$this, 'onRequest']); $this->serv->start(); } public function onStart($serv) { echo "#### onStart ####".PHP_EOL; swoole_set_process_name('swoole_process_server_master'); echo "SWOOLE ".SWOOLE_VERSION . " 服務已啟動".PHP_EOL; echo "master_pid: {$serv->master_pid}".PHP_EOL; echo "manager_pid: {$serv->manager_pid}".PHP_EOL; echo "########".PHP_EOL.PHP_EOL; } public function onManagerStart($serv) { echo "#### onManagerStart ####".PHP_EOL.PHP_EOL; swoole_set_process_name('swoole_process_server_manager'); } public function onWorkStart($serv, $worker_id) { echo "#### onWorkStart ####".PHP_EOL.PHP_EOL; swoole_set_process_name('swoole_process_server_worker'); spl_autoload_register(function ($className) { $classPath = __DIR__ . "/controller/" . $className . ".php"; if (is_file($classPath)) { require "{$classPath}"; return; } }); } public function onRequest($request, $response) { $response->header("Server", "SwooleServer"); $response->header("Content-Type", "text/html; charset=utf-8"); $server = $request->server; $path_info = $server['path_info']; $request_uri = $server['request_uri']; if ($path_info == '/favicon.ico' || $request_uri == '/favicon.ico') { return $response->end(); } $controller = 'Index'; $method = 'home'; if ($path_info != '/') { $path_info = explode('/',$path_info); if (!is_array($path_info)) { $response->status(404); $response->end('URL不存在'); } if ($path_info[1] == 'favicon.ico') { return; } $count_path_info = count($path_info); if ($count_path_info > 4) { $response->status(404); $response->end('URL不存在'); } $controller = (isset($path_info[1]) && !empty($path_info[1])) ? $path_info[1] : $controller; $method = (isset($path_info[2]) && !empty($path_info[2])) ? $path_info[2] : $method; } $result = "class 不存在"; if (class_exists($controller)) { $class = new $controller(); $result = "method 不存在"; if (method_exists($controller, $method)) { $result = $class->$method($request); } } $response->end($result); } } $server = new Server();
Index.php
<?php class Index { public function home($request) { $get = isset($request->get) ? $request->get : []; //@TODO 業務代碼 $result = "<h2>你好,Swoole。</h2>"; $result.= "GET參數:".json_encode($get); return $result; } }
Login.php
<?php class Login { public function index($request) { $post = isset($request->post) ? $request->post : []; //@TODO 業務代碼 return "<h2>登錄成功。</h2>"; } }
一,Swoole可以替代Nginx嗎?
暫時不能,通過Swoole越來越強大,以后說不準。
官方建議Swoole與Nginx結合使用。
Http \ Server對Http協議的支持并不完整,建議僅作為應用服務器。并且在前端增加Nginx作為代理。
根據自己的Nginx配置文件,可以自行調整。
例如:可以添加一個配置文件
enable-swoole-php.conf
location ~ [^/]\.php(/|$) { proxy_http_version 1.1; proxy_set_header Connection "keep-alive"; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://127.0.0.1:9501; }
我們都習慣于將虛擬域名的配置文件放在vhost文件夾中。
例如,虛擬域名的配置文件為:local.swoole.com.conf,可以選擇加載enable-php.conf,也可以選擇加載enable-swoole-php.conf。
配置文件供參考:
server { listen 80; #listen [::]:80; server_name local.swoole.com ; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/project/swoole; #include rewrite/none.conf; #error_page 404 /404.html; #include enable-php.conf; include enable-swoole-php.conf; location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } location ~ /.well-known { allow all; } location ~ /\. { deny all; } access_log /home/wwwlogs/local.swoole.com.log; }
當前,我們直接編輯server段的代碼也是可以的。
二,修改了controller文件夾中的業務代碼,每次都是重啟服務才生效嗎?
不是,每次重啟服務可能會影響到正常用戶使用的,正常處理的請求會被強制關閉。
在本地運行路由控制的代碼時,試試這個命令:
ps aux | grep swoole_process_server_master | awk '{print $2}' | xargs kill -USR1
給master進程發送一個USR1的信號,當Swoole Server接收到該信號后,就會讓所有worker在處理完當前的請求后,進行重啟。
如果查看所有的進程,試試這個命令:
ps -ef | grep 'swoole_process_server'| grep -v 'grep'
可以試著上傳文件,做一個小的FTP服務器。
可以學習Swoole開源框架:EasySwoole,Swoft,One。
可以將Swoole整合到當前正在使用的PHP框架中。
關于“Swoole的應用示例”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。