欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Samrty技术的 初步了解

程序员文章站 2024-01-08 09:13:40
...
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’)

以上就介绍了Samrty技术的 初步了解,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

上一篇:

下一篇: