从 php 访问 twig 模板变量
是否可以从 php 访问 twig 模板中定义的每个变量?
例如:
Template:
...
{% set foo = 'foo' %}
...
来自 PHP:
echo $template->foo
或者类似的东西。
Is it possible to access every variable defined in a twig template from php?
Eg:
Template:
...
{% set foo = 'foo' %}
...
And from PHP:
echo $template->foo
Or something like that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
访问每个变量非常麻烦,所以我最终所做的是创建一个扩展来保存我需要的数据:
在我需要数据的类中:
使用此模板:
渲染后:
Accessing every variable is very cumbersome, so what I did in the end was to create an extension which holds the data that I need:
And in the class where I needed the data:
Using this template:
After render:
如果您想访问模板变量,您可以发送此变量作为参考。
示例:(目标是将电子邮件正文和主题放在一个模板中)
此代码打印:
信件主题
If you want to access template variable you can send this variable as reference.
Example: (the goal is to make email body and subject in one template)
This code prints:
Subject of a letter
您在 Twig 中设置的变量将设置到传递给
Twig_Template->display()
的$context
数组中。该数组按值传递,因此对其进行的任何修改都不会在外部 (PHP) 作用域中看到。所以,不,您不能在 PHP 中使用您在 Twig 中设置的变量。
Variables you set in Twig are set into the
$context
array you pass toTwig_Template->display()
. This array is passed by value so any modifications to it will not be seen in the outer (PHP) scope.So, no, you can't use the variables you set in Twig in PHP.