Laravel 5 shutdown function alternative(Laravel 5 关机功能替代)
问题描述
由于 Application::shutdown() 函数已被删除,我正在寻找替代方法来帮助我确定 Laravel 已完成,在运行结束前一刻.另一件可以帮助我的事情是 Laravel 使用的最后一个函数.
Since Application::shutdown() function has removed, I'm looking for alternative which will assist me determine Laravel has finished, a moment before the end of the running. Another thing which can assist me, is the last function that Laravel use.
注意:我不需要注册回调,我正在构建一个需要了解 Laravel 运行情况的分析工具.
Note: I don't need to register a callback, I'm building a profiling tool which need to understand Laravel done its run.
谢谢.
推荐答案
在 Laravel 5 中 shutdown()
已被 可终止中间件
In Laravel 5 the shutdown()
has been replaced by Terminable Middleware
这是在 HTTP 响应已经发送到浏览器之后 运行的中间件.
This is middleware that is run after the HTTP response has already been sent to the browser.
use IlluminateContractsRoutingTerminableMiddleware;
class MyProfiler implements TerminableMiddleware {
public function handle($request, $next)
{
return $next($request);
}
public function terminate($request, $response)
{
// Do your profiling here
}
}
这篇关于Laravel 5 关机功能替代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 5 关机功能替代
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01