Smarty(模板引擎)
一、什么是模板引擎?
Smarty是一个php模板引擎。更准确的说,它分开了逻辑程序和外在的内容,提供了一种易于管理的方法。可以描述为应用程序员和美工扮演了不同的角色,因为在大多数情况下,他们不可能是同一个人;分开编写,加快开发进度!
二、自定义模板引擎
引擎类:Mytpl.class.php
<?php
class Mytpl{
private $data = array();
private $newFile;
//接收数据
public function assign($key,$val){
$this->data[$key] = $val;
}
//显示模版
public function display($tpl){
/*
$userlist = $this->data['userlist'];
$title = $this->data['title'];
*/
/*
foreach($this->data as $key=>$val){
// $userlist
$$key = $val;
}
*/
$this->bianyi($tpl);
//多学点知识,少写点代码
extract($this->data);
include $this->newFile;
}
public function bianyi($tpl){
$html = file_get_contents($tpl);
//正则
// {$title}
$match = '/\{(.*?)\}/';
//替换
$html = preg_replace($match,'<?php echo $1 ?>',$html);
//重新保存文件
$this->newFile = './view_c/'.md5($tpl).'.php';
file_put_contents($this->newFile,$html);
}
}
?>
执行的PHP文件:(导入引擎类)v5.php
<?php
//查询数据库
//在页面顶端做所有的逻辑处理,下面的html代码里面只负责显示
$arr = array(
array('id'=>1,'name'=>'bobo','age'=>18),
array('id'=>1,'name'=>'bobo','age'=>18),
array('id'=>1,'name'=>'bobo','age'=>18),
array('id'=>1,'name'=>'bobo','age'=>18),
);
$title = '测试标题';
//包含类文件
include './Mytpl.php';
//实例化对象
$tpl = new Mytpl();
//分配数据
$tpl->assign('userlist', $arr);
$tpl->assign('title', $title);
$tpl->assign('msg', '测试字符串');
$tpl->display('./view/tpl.php');
?>
调用的模板:(前端美工)index.html(后缀名也可以使用其他.tpl)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Index</title>
</head>
<body>
{$title}
</body>
</html>
三、安装Smarty及初始化配置
Smarty的安装比较容易,因为它不属于PHP的应用扩展模块,只是采用PHP面向对象思想编写的软件,只要在我们的PHP脚本中加载Smarty类,并创建一个Smarty对象,就可以使用Smarty模板引擎了。
初始化类库的默认设置:
<?php
//一个简单的smarty示例
//穿内裤
include './libs/Smarty.class.php';
//实例化对象
$smarty = new Smarty();
//修改默认配置
//定界符
$smarty->setLeftDelimiter('<{'); //方法设置推荐
//$smarty->left_delimiter = '<{'; //属性设置
$smarty->right_delimiter = '}>'; //属性设置
//设置模板路径
$smarty->setTemplateDir('./view');
//设置编译后文件路径
$smarty->setCompileDir('./runtime/view_c');
//设置缓存路径(要开启缓存这个目录才会被使用)
$smarty->setCacheDir('./runtime/cache');
//设置配置文件路径
$smarty->setConfigDir('./config');
//分配数据
$smarty->assign('title','good');
//调用模板
$smarty->display('1.html');
?>
init.inc.php
//初始化Smarty成员属性的公用文件init.inc.php
define('ROOT',str_replace("\\","/",dirname(_FILE_)),'/'); //指定项目的根路径
require ROOT.'libs/Smarty.class.php'; //加载smarty类文件
$smarty = new Smarty();
//实例化smarty类对象$smarty
/*推荐使用smarty3以上版本方式设置默认路径,设置成功后都返回$smarty对象本身,可以使用连贯操作 */
$smarty->setTemplateDir(ROOT.'templates/'); //设置所有模板文件存放的目录
// ->addTemplateDir(ROOT.'templates2') //可以添加多个模板目录(前后台各一个)
->setCompileDir(ROOT.'templates_c/')//设置所有编译过的模板文件存放目录
->setPluginsDir(ROOT.'plugins/')//设置模板扩充插件存放目录
->setCacheDir(ROOT.'cache/')//设置缓存文件存放的目录(开启缓存才被使用)
->setConfigDir(ROOT.'configs'); //设置模板配置文件存放的目录
$smarty->caching = false; //设置smarty缓存开关1开启 0 关闭 ture开启 false 关闭
$smarty->cache_lifetime = 60*60*24 //设置模板缓存有时间段的长度为1天
$smarty->left_delimiter = '<{'; //设置模板语言中的左结束符号
$smarty->right_delimiter = '}>'; //设置模板语言中的右结束符号
/*初始化配置说明*/
//smarty2时的设置方式:
/*
$smarty->template_dir = "./templates"; //设置模板目录,2.0设置方法,3.0沿用但不支持
$smarty->compile_dir = "./templates_c"; //设置编译目录。2.0设置方法,3.0沿用但不init持
$smarty->config_dir = "./configs/"; //设置编译目录。2.0设置方法,3.0沿用但不支持
$smarty->cache_dir = "./cache/"; //设置编译目录。2.0设置方法,3.0沿用但不支持
*/
//smarty3对属性进行了封装,可以使用如下方法进行访问获得目录
$smarty->getCacheDir(); //得到当前缓存目录路径
$smarty->getTemplateDir(); //得到当前模板目录路径的数组
$smarty->getConfigDir(); //得到当前配置文件目录路径
$smarty->getCompileDir(); //得到当前编译目录路径
$smarty->getPluginsDir(); //得到当前插件目录路径数组
//同样下面的方法进行目录设置:
//设置新的模板目录,注意设置后模板目录的数组只有该值一个,不管原来有几个值
$smarty->setTemplateDir("./templates/");
$smarty->setCompileDir("./templates_c/"); //设置新的编译目录
$smarty->setConfigDir("./configs/"); //设置新的配置文件目录
$smarty->setCacheDir("./cache/");//设置新的缓存目录
$smarty->setLeftDelimiter('<{'); //方法设置推荐
$smarty->setRightDelimiter('<{'); //方法设置推荐
//引用的模板文件的路径必须在模板目录数组中,否则报错,由于仍然用原来的模板文件,这样模板数组中有两个路径。
$smarty->addTemplateDir('./templates2/');
//添加一个新的插件目录,如果用set将取消插件数组,变为单指
$smarty->addPluginsDir('./myplugins');
//说明:这些Smarty对象中的设置方法,设置成功后返回的还是Smarty类对象($this),所以可以像
//init.inc.php脚本中应用的方式一样,采用对象连贯操作方式部署smarty路径。
/*初始化配置说明*/