この記事の例では、一般的な Smarty コード スニペットについて説明します。参考のためにみんなと共有してください。詳細は次のとおりです:
1、
<select > {html_options values=$cust_ids selected=$customer_id output=$cust_names} </select>
手順: ドロップダウン メニューを生成します。値=配列、配列要素はリスト値です。選択=値、これはデフォルトの列です
テーブル値出力=配列、配列要素は表示されたリスト値です
{html_checkboxes values=$cust_ids checked=$customer_id output=$cust_names separator="<br/>"}
説明: チェックボックス。上記と同じ; separator="
" は、各チェック ボタンを
{html_radios values=$cust_ids checked=$customer_id output=$cust_names separator="<br/>"}
で区切る文字列を指します: ラジオ ボタン
2、
{counter start=0 skip=2 print=ture}
説明:その後使用する場合、カウンターは 0 から始まり、毎回 2 ずつ増加します。
3、
{section loop=$data} <tr bgcolor="{cycle values="#eeeeee,#d0d0d0"}"> <td>{$data[rows]}</td> </tr> {/section}
説明: 配列要素(またはシーケンス)の値を返します。
4、
{assign var="name" value="Bob"} The value of $name is {$name}.//The value of $name is Bob。
説明: 代入
5、
{fetch file="http://www.myweather.com/68502/" assign="weather"}
説明: fetch は読み取りに使用されます。ローカル ファイル システム上のファイルを HTTP または FTP で取得し、ファイル名が「http://」で始まる場合は Web サイトのページを取得して表示します。 ://"、から取得されます。 FTP サーバーは
ファイルを取得して表示します。
6、
{html_image file="../path/relative/to/currdir/pumpkin.jpg" border="1" height="100" width="100" alt="smarty学习笔记之常见代码段用法总结" href="1.html"}
説明: 画像
7、
{html_select_date}
説明: 作成日ドロップダウンメニュー。任意の年、月、日を表示できます
{html_select_time}
説明: 時間、分、秒、
{html_table loop=$data cols=4 table_attr='border="0"' tr_attr=$tr td_attr=$td}
{math equation="x + y" x=$height y=$width}
{mailto address="me@domain.com" text="send me some mail"}
11 ,
{popup}
上記では、smarty の学習ノートでの一般的なコード セグメントの使用方法の概要を、関連する内容も含めて紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。