Samrty技術的 初步瞭解

<span style="font-size:18px;">Smarty 技術的使用
<?php #smarty 測試#引入smarty 
require_once "./smarty/Smarty.class.php";   #必須加載該類文件#生成一個smarty對象$smarty = new Smarty();#設置smarty$smarty->left_delimiter='{';	#左修飾符$smarty->right_delimiter='}';	#右修飾符$tpl=$smarty->template_dir ="./libs/view/template"; #模板文件$smarty->cache_dir ="./libs/view/cache";			 #緩存文件$smarty->compile_dir ="./libs/view/template_c";  #編譯文件$smarty->caching = true;  #開啓緩存$smarty->cache_lifetime = 100; #緩存生命週期#使用模板方法$smarty->assign('test','this is testSmarty!');   #進行賦值$smarty->display("index.tpl");	#輸出 (必須在指定的目錄下存在該文件,文件中用{$test} 表示以上賦值的&lsquo;test’)</span>
相關文章
相關標籤/搜索