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 关机功能替代
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01