Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Symfony2 中创建一个基本的 CMS。是否有可能以某种方式将树枝代码从mysql“翻译”到控制器?
例如让说在mysql中有
{% include 'FOO::FOO.html.twig' %}
当我从 orm 得到它时,如何让它加载模板而不是仅仅回显
{% 包括 'FOO::FOO.html.twig' %}
非常感谢。
您可以使用 twig 的内部 Lexer、解析器和编译器来获取模板的 php 对象表示:
http://twig.sensiolabs.org/doc/internals.html