Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
修飾子で2つの変数(配列値)を組み合わせる方法は?
これは機能します:
<a href="{'smartphone'|buildLink:$k:$v["brand"]}">
しかし、これはしませんか?
<a href="{'smartphone'|buildLink:$k:$v["brand"]+$v["brand2"]}"
Smarty構文は、式が許可される場所に関して制限されているため、おそらく合計を一時変数に割り当てる必要があります。
{assign var=_sum value=$v[brand]+$v[brand2]} <a href="{'smartphone'|buildLink:$k:$_sum}"