分析模板技术:是利用php语言读取模板文件完成字符串替换掉的过程
详解代码如下:
html页面:
{id}
{name}
{age}
后台逻辑部分
//
$id=8;
$name='zhangsan';
$age = 12;
$str = file_get_contents('demo1.html');//模板文件的所有内容
$str = str_replace('{id}', $id, $str);//替换id
$str = str_replace('{name}', $name, $str);
$str = str_replace('{age}', $age, $str);
echo $str;
vars[$key] = $value;
}
public function display($file) //file表示模板名
{
$str = file_get_contents($file); //从模板中读取多有内容,并将内容放入$str中
foreach ($this->vars as $key => $value) //$key 键名(模板标记) $value 值
{
$str = str_replace($this->left_delimiter.$key.$this->right_delimiter, $value, $str);
}
echo $str;
//file_put_contents('bak.html', $str);
}
}
?>
读取编译文件省去了读取模板文件,和字符串替换的时间,所以可以更快
缓存默认是关闭的;缓存是把数据彻底的存在缓存文件里,直到缓存文件过期才会重新来缓存;所以说smarty在一些实时性特别强的网站里不是特别合适;
重新编译的标准
if(!file_exists(com_aa.php)||filetime(aa.tpl)>filetime(com_aa.php))
缓存的配置
$smarty->cache_dir="/caches/";//缓存目录
$smarty->caching=true;//开启缓存,为flase的时候缓存无效
$smarty->cache_lifetime=60;//缓存时间(单位 秒)
缓存的使用
$smarty->display('模板文件',缓存id);//创建带ID的缓存
$smarty->clear_all_cache();//清除所有缓存
$smarty->clear_cache('模板文件');//清除指定模板文件的缓存
$smarty->clear_cache('模板文件',缓存id);//清除指定id的缓存
第一种缓存
生成的编译文件是templates_c目录下的动态页面文件,实际上就是一个php文件
例如:com_aa.php
第二种缓存
生成的编译文件是caches目录下的静态页面文件,实际上是一个html静态文件
模板文件发生变化的话,两种缓存模式都会重新编译,致使编译文件改变;
assign进模板文件的标签标量的值发生变化的话,静态页面缓存内容在缓存期内不会改变
局部缓存:一个模板文件一部分缓存,另外一部分数据实时更新。
insert函数类似于include函数,不同之处是insert所包含的内容不会被缓存,每次调用该模板都会
重新执行该函数。
cache1.tpl
//写在模板文件中的代码
{insert name="mytime"}