gpt4 book ai didi

php - Twig - 渲染一个变量

转载 作者:可可西里 更新时间:2023-10-31 23:06:43 25 4
gpt4 key购买 nike

我正在渲染一个模板文件,其中有一个变量 {{page_content|raw}}。这一切都很好。但是我想将该变量呈现为 Twig ...该值包含更多我想使用相同环境解析的变量。

我正在使用 PHP。

最佳答案

您可以使用 template_from_string 函数。

参见文档 here .

Twig_Loader_String loads templates from strings. It's a dummy loader as the template reference is the template source code

如第一个链接所示,似乎有必要明确说明您要使用它:

$twig = new Twig_Environment(...);
$twig->addExtension(new Twig_Extension_StringLoader());

也可以直接在你的 Twig 模板中(第一个链接)

{{ include(template_from_string("Hello {{ name }}") }}
{{ include(template_from_string(page_content)) }}

关于php - Twig - 渲染一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16739700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com