0

有没有办法在 Twig 中使用任何随机对象作为标签?

我知道我可以设置一个变量——只是这样会更干净。

IE

{{ get_an_entry() }}
    {{ name }} is {{ id }}
{{ end }}

或者

{{ entry }}
    {{ name }} is {{ id }}
{{ end }}

在示例中,name 和 id 值将来自 entry 或 get_an_entry() 的返回

4

1 回答 1

0

Yes! It just need the __toString() PHP magic method implemented. An usage like that in fact triggers a string conversion.

于 2015-04-16T16:03:26.400 回答