首頁 > 後端開發 > php教程 > Samrty技術的 初步了解

Samrty技術的 初步了解

WBOY
發布: 2016-08-08 09:28:22
原創
1174 人瀏覽過
<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} 表示以上赋值的‘test’)</span>
登入後複製

以上就介紹了Samrty技術的 初步了解,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板