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 変数の先頭に追加する方法を探しています。次のような要素名を持つ動的フォームがありますinput-1(1は設定/フィールドのIDです)。
input-1
私はこれをやろうとしました{capture}{/capture}が、これは初めてしか機能しないようです (フィールドがループで表示されるため)。
{capture}{/capture}
|cat:'text'Smarty とは逆の機能がありますか、それとも次のようにする必要がありますか?
|cat:'text'
変数で本当に必要ですか?私は通常、次のようにこれらのことを行います。
<input name="input-{$id}" type="..." />
変数で必要な場合は、次を使用できます{assign}。
{assign}
{assign var="name" value="input-$id"} <input name="{$name}" type="..." />