Home>Article>PHP Framework> Introducing swoole http_server to adapt to thinkphp 5.1

Introducing swoole http_server to adapt to thinkphp 5.1

coldplay.xixi
coldplay.xixi forward
2021-03-23 10:58:45 2392browse

Introducing swoole http_server to adapt to thinkphp 5.1

1. Environment description

  • thinkphp 5.1
  • swoole 4.0.2
  • Alibaba Cloud CentOS 7.4

Recommended (free):swoole

2. Development

1. Create a new server directory in the tp root directory to store swool_http_server.

http_server.php code code

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. Enter the service directory, execute php http_server.php and start swoole_http_server

No error was reported and the startup was successful.

3. Create a new test method in index and access the server port 8811

##3. Question

.swoole will not log out $_GET $_POST.... Super global variables

The above is the detailed content of Introducing swoole http_server to adapt to thinkphp 5.1. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete