gpt4 book ai didi

php - Symfony2 : How to replace a certain string with a global Twig variable?

转载 作者:行者123 更新时间:2023-12-02 04:35:38 26 4
gpt4 key购买 nike

我在 config.yml 中有以下内容

twig:
globals:
locale_list_sg: Singapore
locale_list_cn: China

在我的 twig 模板中,我想根据参数获取值“Singpaore”和“China”。因此,我像这样连接它们并显示:

{{'locale_list_' ~ countryId}}

但是,上面的代码将显示 locale_list_sg 而不是进入 config.yml 并提取值。

最佳答案

使用更简单的方法:

config.yml

twig:
globals:
locale_list:
sg: Singapore
cn: China

模板:

{{ locale_list[country_id] }}

关于php - Symfony2 : How to replace a certain string with a global Twig variable?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22031282/

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