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.
次のように、Smarty 値が含まれている値を別の値に割り当てたいとします。
{assign var="one" value="hello world {$two}"}
しかし、エラーが発生しました。解決方法を教えてください。
この特定のケースに対する最も簡単な解決策は、|cat修飾子を使用することです。修飾子は通常、文字列または変数を使用する場所ならどこでも使用できるからです。
|cat
{assign var=one value="hello "|cat:$two}