smarty插件php
1. smarty系統的插件html
2. 自定義插件ios
smarty的系統的標籤 系統的插件 函數插件數據庫
插件目錄 /smarty/plugins/數組
插件: 就是smarty中可以完成必定功能的函數ide
系統插件:函數
單選框ui
{html_radios name="" output="" values="" checked="" separator=""}spa
html_radios: 標籤名 插件
name: 單選按鈕組的名字
output:顯示的數據組成的一維索引數組
values: 每一個單選按鈕value值組成的一維的索引數組
checked: 被默認選中按鈕的value值,只能有一個
separator:按鈕組的樣式
{html_radios name="" options="" checked="" separator=""}
options: values做爲數組的key 顯示的數據做爲values的一維的關聯數組
複選框
{html_checkboxes name="" output="" values="" checked="" separator=""}
html_checkboxes: 標籤名
name:單選按鈕的名字
output:顯示的數據內容組成的一維索引數組
values: 每一個單選按鈕value值組成的一維的索引數組
separator:按鈕組的樣式
checked:能夠是單個數值也能夠是被選中的按鈕value組成的一維索引數組
{html_checkboxes name="" options="' checked="" separator=""}
options: values 作key output 作value 的一維關聯數組
下拉列表框
<select name="">
<option value="">顯示的內容</option>
</select>
{html_options name="" output="" values="" selected=""}
時間插件
{html_select_time} H:i:s
日期插件
{html_select_date start_year="" end_year=""}
start_year:起始的年份
end_year:終止的年份
month_format="%m"
display_months=false
display_days=false
在/smarty目錄下創建一個plugins.php,在/template/創建一個plugins.html
plugins.php
<?php require("./Smarty.inc.php");//引入smarty的初始化文件 $sex = "女,男";//真是開發的時候數據是這樣寫入數據庫 $sex = explode(",", $sex);//用逗號分割成一個數組 $smarty->assign("sex",$sex); $hobby = "籃球,足球,檯球"; $hobby = explode(",",$hobby); $smarty->assign("hobby",$hobby); $arr = array("籃球","足球","檯球"); $selected=array("籃球","足球");//這裏是上面數組裏的值不是key $smarty->assign("selected",$selected); $smarty->assign("arr",$arr); $area['addr']= array("江蘇","河南","上海","浙江","北京"); $area['id'] = array(110,120,130,140,150); $smarty->assign($area); $lasttime = time(); $smarty->assign("lasttime",$lasttime); $smarty->display("plugins.html"); ?>
plugins.html
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> </head> <body> <h3>單選框</h3> {html_radios name="sex" options=$sex checked="0" separator=""} <hr/> <h3>單選框</h3> {html_radios name="sex" options=$sex checked="0" separator="<br/>"} <hr/> <h3>複選框</h3> {html_checkboxes name="hobby" output=$hobby values=$hobby checked="" separator="" } <hr/> <h3>已勾選複選框</h3> {html_checkboxes name="hobby" output=$arr values=$arr checked=$selected separator="" } <hr/> <h3>下拉框</h3> {html_options name="address" output=$addr values=$id selected=""} <hr/> <h3>時間</h3> {$lasttime|date_format:date("Y-m-d H:i:s")} </body> </html>
頁面效果