您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關swoole http_server適配thinkphp 5.1的方法的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
1、環境說明
thinkphp 5.1
swoole 4.0.2
CentOS 7.4
2、開發
1.在tp根目錄下新建一個server目錄,用來存放swool_http_server。
http_server.php 代碼代碼
<?php /** * Created by PhpStorm. * Date: 2018/7/22 * Time: 15:12 */ $http = new swoole_http_server('0.0.0.0', 8811); //set函數用于設置swoole_server運行時的各項參數 $http->set([ 'worker_num'=>4 ,//worker process num ]); //此事件在Worker進程/Task進程啟動時發生 $http->on('WorkerStart',function (swoole_server $server, $worker_id){ // 定義應用目錄 define('APP_PATH', __DIR__ . '/../application/'); // 加載基礎文件 ThinkPHP 引導文件 require __DIR__ . '/../thinkphp/base.php'; }); $http->on('request', function ($request, $response){ if($request->server){ foreach ($request->server as $key => $val){ $_SERVER[strtoupper($key)] = $val; } } if($request->header){ foreach ($request->header as $key => $val){ $_SERVER[strtoupper($key)] = $val; } } if($request->get){ foreach ($request->get as $key => $val){ $_GET[$key] = $val; } } if($request->post){ foreach ($request->post as $key => $val){ $_POST[$key] = $val; } } ob_start(); try{ // thinkphp 執行應用并響應 think\Container::get('app') ->run() ->send(); }catch (\Exception $exception){ // todo } $res = ob_get_contents(); ob_end_clean(); $response->end($res); }); $http->start();
2. 進入service目錄,執行 php http_server.php 啟動swoole_http_server
沒有報錯,啟動成功。
3. 在index 新建一個測試方法,訪問服務器8811端口
3、問題
.swoole 不會注銷$_GET $_POST .... 超全局變量
感謝各位的閱讀!關于“swoole http_server適配thinkphp 5.1的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。