使用 ZF 时放置 xdebug_time_index() 来测量页面执行时间的最佳位置
我试图找出放置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在调用 $application->run(); 之后,我会将其放置在 /public 文件中的 index.php 中。
I would place it in my index.php in the /public file, after calling $application->run();