比Smarty,FastTemplate and PHPLIB Template都好用 (轉)
1 標籤:
(1),變數:{$key} 可以是一般變數,陣列和類的成員,但字元不能用 " ,只能是單引號 '
例子: {$value} ,{$a[0]} ,{$this->a['color']} 這樣寫是錯的{$this->["color"]}
(2),迴圈:{l:迴圈語句}其他程式碼{/loop} 支援for和while迴圈
例子: {loop:for($i=10;$i<=20;$i++)} test {$i} {/loop} 輸出(test)20~30的數
{loop:while($i++<10)} test {$a[$i]} {/loop} 輸出(test)20~30的陣列
(3),邏輯:{logi:條件語句}其他程式碼{/logi} 支援if,elseif,else
例子: {logi:if($i==1)} test {$i} {/logi}
{logi:elseif($i==2)} test {$a[$i]} {/logi}
{logi:else} test {$a[$i]} {/logi}
(4),:{exec:語句} 程式段,可以是,注意字元只能用 ',不能用"
例子 : {exec:$a='hello'.$i} 正確 {exec:$a="hello$i"}錯誤
{exec:echo $a}
{exec:echo time()}
{exec:$this->outpage(1,2,'index.')}
(5),{* 模板註釋*} 例子:{*這裡不會輸出的*}
2,模板輸出 :
只輸出:eval(cqlctpl(模板)) 例子:eval(cqlctpl("1.tml"))
套模板:{exec:eval(cqlctpl(模板檔案))} 例子:{exec:eval(cqlctpl($Templatefile))}
{*這裡是在模板中掉用其他模板檔案*}
3,函式原始碼:
function cqlctpl($file)
{
$fp=fopen($file,"r");
$msg="echo"".str_replace(""",""",fread($fp,filesize($file)))."";";
fclose($fp);
$oldstr=array(0=>"/{loop:([^}]+)}(.+){/loop}/si",
1=>"/{logi:([^}]+)}(.+){/logi}/si",
2=>"/{exec:([^}]+)}/si",
3=>"/({*[^*]+*})/si"
);
$newstr=array(0=>"";1{echo"2";}echo"",
1=>"";1{echo"2";}echo"",
2=>"";1;echo"",
3=>""
);
return preg_replace($oldstr,$newstr,$msg);
}
4,模板舉例:
模板檔案:1.tml的原始碼
{$title} (1.tml)
{*this is a title*}{loop:for($i=0;$i<10;$i++)} {*loop start*}
{$body} is {$array[$i]} {*out the msg*}
{logi:if($i>5)}
{$i} is biger than 5 {*logic start*}
{/logi} {*login end*}
{/loop} {*loop end*}
{exec:$time=time()} {*exec start and end*}
{exec:echo '
time is '.$time} {*exec start and end*}
{exec:eval(cqlctpl('2.tml'))} {*this is include other tml*}
模板檔案:2.tml的原始碼
this is other tml(2.tml)
{ exec:test()}
演示的php指令碼
tml.php:
function cqlctpl($file) /*函式作者,cqlc,主頁:,/" target=_blank>
中文文件案 */
{
$fp=fopen($file,"r");
$msg="echo"".str_replace(""",""",fread($fp,filesize($file)))."";";
fclose($fp);
$oldstr=array(0=>"/{loop:([^}]+)}(.+){/loop}/si",
1=>"/{logi:([^}]+)}(.+){/logi}/si",
2=>"/{exec:([^}]+)}/si",
3=>"/({*[^*]+*})/si"
);
$newstr=array(0=>"";1{echo"2";}echo"",
1=>"";1{echo"2";}echo"",
2=>"";1;echo"",
3=>""
);
return preg_replace($oldstr,$newstr,$msg);
}
function test(){echo"
這是第二個模板檔案喲 ,歡迎你的測試";} /*定義一個函式*/
$title="這是第一個模板檔案";
$body="這裡已經開始輸出了 ";
for($i=0;$i<10;$i++)$array[$i]="hello world $i";
eval(cqlctpl("1.tml"));
5,模板輸出結果,
這是第一個模板檔案 (1.tml)
這裡已經開始輸出了 is hello world 0
這裡已經開始輸出了 is hello world 1
這裡已經開始輸出了 is hello world 2
這裡已經開始輸出了 is hello world 3
這裡已經開始輸出了 is hello world 4
這裡已經開始輸出了 is hello world 5
這裡已經開始輸出了 is hello world 6
6 is biger than 5
這裡已經開始輸出了 is hello world 7
7 is biger than 5
這裡已經開始輸出了 is hello world 8
8 is biger than 5
這裡已經開始輸出了 is hello world 9
9 is biger than 5
time is 1059227729
this is other tml(2.tml)
這是第二個模板檔案喲 ,歡迎你的測試
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-981951/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- smarty、smarty格式化、smarty整數、smarty float、smarty各種轉換方式、smarty日期轉換等等 (轉)...
- smarty語法
- 安裝與配置MySQL,phpmyAdmin;安裝與測試PHPLIB (轉)MySqlPHP
- 人人都會設計模式—模版方法模式–Template-Method設計模式
- Smarty 模板函式函式
- Smarty例項教程(2)
- Smarty例項教程(5)
- Smarty配置(標準分析)
- smarty塊函式使用函式
- 比cat更好用的命令!
- 比df更好用的命令!
- Python字串轉換成Unicode--比較好用的方法Python字串Unicode
- smarty模板引擎視訊教程
- CI 框架整合 Smarty 模版引擎框架
- Zend Framework+Smarty應用Framework
- go text/template & Consul-templateGo
- 比UIWebView更強大好用的WKWebViewUIWebView
- smarty模板入門學習(share)
- html templateHTML
- ES 筆記十四:Index Template 和 Dynamic Template筆記Index
- c++ 模板模板引數("Template Template Parameters")C++
- 學Java的軟體哪些比較好用Java
- Mysql 一個比較好用的函式MySql函式
- Smarty中處理Jpgraph影像技術
- Using the Template Collection to Add a Template Column in WebDataGridWeb
- go template使用Go
- BaiDu TemplateAI
- Django模板templateDjango
- Js template engineJS
- artTemplate js templateJS
- C_template
- Mendix Page Template
- ansible template
- 好用的工具checkinstall(轉)
- 專案管理工具哪家比較好用?專案管理
- Gulp, 比Grunt更好用的前端構建工具前端
- Zend Framework和Smarty在php中的配置FrameworkPHP
- 這幾個好用的Python開源框架,你都知道嗎?Python框架