用于树枝模板的Profiler

时间:2015-06-03 08:50:53

标签: php html symfony templates twig

我开始优化我的网站,目前仍在Symfony2中使用开发环境。

我有一页非常奇怪。页面加载大约1000毫秒,树枝模板基于Symfony分析器需要大约900毫秒。

我看过树枝模板,但它很大(很多循环,包括模板等......)

我想知道在我的模板中需要多少次,所以我正在寻找一种方法来分析这些模板。这可能吗?如何?

1 个答案:

答案 0 :(得分:4)

使用Symfony 2.4,在你的树枝模板中:

{% stopwatch "foo" %}
   ... some things that gets timed
{% endstopwatch %}