Kohana 3 中的执行时间
如何在 Kohana 3 中以最简单的方式获取执行时间等。
How to get execution time and etc. in simplest way in Kohana 3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Kohana 3 中以最简单的方式获取执行时间等。
How to get execution time and etc. in simplest way in Kohana 3.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
查看分析
Have a look at Profiling
最简单的方法是将
放入您的视图中。我建议在您的模板文件中,就在
标记之前。
The simplest way possible would be to put
<?php echo View::factory('profiler/stats');?>
in your view. I suggest in your template file, right before</body>
tag.