Twig标签包括vs功能包括

Mr.*_* 14 18 php twig

Twig的标签文档看起来与函数include非常相似.

标签包括:

{% include 'header.html' %}
Run Code Online (Sandbox Code Playgroud)

功能包括:

{{ include('template.html') }}
Run Code Online (Sandbox Code Playgroud)

有人可以指出在什么情况下,一个优先于另一个?谢谢!

0x1*_*ene 20

{{ include() }} 在Symfony 2.2中引入:

使用函数可以让你用输出做任何你想做的事情(标签不可能),就像一个简单的:

{{ set content = include('some_template') }}
Run Code Online (Sandbox Code Playgroud)

但正如Fabien Potentier(枝条创始人)所说

函数和标签确实完全相同

你可以在这里找到关于它的介绍的讨论:https://github.com/twigphp/Twig/pull/926