如何在smarty中将变量连接到字符串?

时间:2014-05-06 09:42:23

标签: string variables smarty concatenation string-concatenation

我关注了聪明的代码:

{foreach from=$preview_data key=key item=value}
<input type="hidden" class="form-control" name="units_$key" id="units_$key" value="{$value.units}">
{/foreach}

我想将字符串 units _ 附加到变量$key中包含的值。我试过上面的代码,但它没有用。怎么做到这一点?

1 个答案:

答案 0 :(得分:0)

$ key只是一个变量,使用相同的语法:

<input type="hidden" class="form-control" name="units_{$key}" id="units_{$key}" value="{$value.units}">