Swoole完美支持ThinkPHP5
1、首先要开启http的server
- 可以在thinkphp的目录下创建一个server目录,里面创建一个HTTPServer的php
2、需要在WorkerStart回调事件做两件事
- 定义应用目录:
define('APP_PATH', __DIR__ . '/../application/');
- 加载基础文件:
require __DIR__ . '/../thinkphp/base.php';
3、因为swoole接收get、post参数等和thinkphp中接收不一样,所以需要转换为thinkphp可识别,转换get参数示例如下:
注意点: swoole对于超全局数组:$_SERVER
、$_GET
、$_POST
、define定义的常量
等不会释放,所以需要先清空一次
// 先清空
$_GET = [];
if (isset($request->get)) {
foreach ($request->get as $key => $value) {
$_GET[$key] = $value;
}
}
4、thinkphp会把模块、控制器、方法放到一个变量里去,所以通过pathinfo模式访问会存在只能访问第一次的pathinfo这个问题,worker进程里是不会注销变量的
解决办法:
thinkphp/library/think/Request.php
function path
中的if (is_null($this->path)) {}
注释或删除
function pathinfo
中的if (is_null($this->pathinfo)) {}
注释或删除
注意:只删除条件,不删除条件中的内容
5、swoole支持thinkphp的http_server示例:
// 面向过程写法
$http = new swoole_http_server('0.0.0.0', 9501);
$http->set([
// 开启静态资源请求
'enable_static_handler' => true,
'document_root' => '/opt/app/live/public/static',
'worker_num' => 5,
]);
/**
* WorkerStart事件在Worker进程/Task进程启动时发生。这里创建的对象可以在进程生命周期内使用
* 目的:加载thinkphp框架中的内容
*/
$http->on('WorkerStart', function (swoole_server $server, $worker_id) {
// 定义应用目录
define('APP_PATH', __DIR__ . '/../application/');
// 加载基础文件
require __DIR__ . '/../thinkphp/base.php';
});
$http->on('request', function ($request, $response) {
// 把swoole接收的信息转换为thinkphp可识别的
$_SERVER = [];
if (isset($request->server)) {
foreach ($request->server as $key => $value) {
$_SERVER[strtoupper($key)] = $value;
}
}
if (isset($request->header)) {
foreach ($request->header as $key => $value) {
$_SERVER[strtoupper($key)] = $value;
}
}
// swoole对于超全局数组:$_SERVER、$_GET、$_POST、define不会释放
$_GET = [];
if (isset($request->get)) {
foreach ($request->get as $key => $value) {
$_GET[$key] = $value;
}
}
$_POST = [];
if (isset($request->post)) {
foreach ($request->post as $key => $value) {
$_POST[$key] = $value;
}
}
// ob函数输出打印
ob_start();
try {
think\Container::get('app', [APP_PATH]) ->run() ->send();
$res = ob_get_contents();
ob_end_clean();
} catch (\Exception $e) {
// todo
}
$response->end($res);
});
$http->start();
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。