使用 ZF 时放置 xdebug_time_index() 来测量页面执行时间的最佳位置

发布于 2024-09-01 12:26:43 字数 248 浏览 4 评论 0原文

我试图找出放置 xdebug 优秀 xdebug_time_index() 函数的最佳位置,以便我得到使用 Zend Framework 应用程序结构时页面执行时间的最佳指示。

我正在考虑将其放入控制器中的后调度挂钩中(我的所有控制器都继承自基本控制器类),但我已经尝试过此操作,结果似乎不正确。

有什么想法吗?

I'm trying to figure out the best place to put xdebug's excellent xdebug_time_index() function so that I get the best indication of page execution times when using a Zend Framework application structure.

I was thinking of putting it in post dispatch hook in my controller (all my controllers inherit from a base controller class) but I've tried this and the results don't seem correct.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱自由 2024-09-08 12:26:43

在调用 $application->run(); 之后,我会将其放置在 /public 文件中的 index.php 中。

I would place it in my index.php in the /public file, after calling $application->run();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文