如何在Twig中用变量替换字符串

时间:2016-07-27 18:10:30

标签: php html symfony twig

{% image '@AppBundle/Resources/public/images/florida.png'%}
    <img src="{{ asset_url }}" alt="Example" height="200" width="200"/>
{% endimage %}

我的twig文件中有这个代码。我想从文件位置加载名为&#34; florida.png的图像:&#34; @ AppBundle / Resources / public / images / florida.png&#34;。我想替换&#34; @ AppBundle / Resources / public / images / florida.png&#34;用字符串变量,我想知道如何做到这一点?任何帮助都会有很大的帮助!

1 个答案:

答案 0 :(得分:0)

这是你之后的事吗?

<img src="{{ asset('bundles/app/images/florida.png') }}" alt="Example" height="200" width="200"/>