smarty模板引擎基础知识⼊门
本⽂实例讲述了smarty模板引擎基础知识。分享给⼤家供⼤家参考。具体如下:
⼀、基本概念
1.什么是mvc?
mvc是⼀种开发模式,核⼼思想是:数据的输⼊、数据的处理、数据显⽰的强制分离。
2.什么是smarty?
smarty是⼀个php的模板引擎。更明确的来说,它可以帮助开发者更好的分离程序逻辑和页⾯显⽰。
3.smarty运⾏原理
模板⽂件,就是⼀个显⽰数据的模板,其中需要显⽰的数据⽤占位符代替。
smarty运⾏时,会读取模板⽂件,将模板⽂件中的占位符替换成真正的数据,并输出⼀个处理后的php⽂件,交由服务器运⾏。
⼆、⾃⼰写⼀个smarty模板
为了更好的理解smarty模板,现在⾃⼰先写⼀个⾃⼰的smarty模板-minismarty,让⾃⼰更加深⼊的了解smarty运⾏原理。
1.新建项⽬minismarty
新建模板⽂件路径:templates
新建模板⽂件被编译后的⽂件路径:templates_c
新建模板⽂件:intro.tpl
新建运⾏的⽂件:index.php
新建⾃⼰的smarty,即处理模板的⽂件:cls_MiniSmarty.php
2.编写index.php⽂件
<?php
require_once './cls_MiniSmarty.php';
$miniSmarty = new MiniSmarty();
//传递数据
$miniSmarty->assign("title","hello minismarty!");
$miniSmarty->assign("content","<font color='red'>this is content!</font>");
//传递数据到哪个页⾯显⽰
$miniSmarty->display("intro.tpl");
>
3.编写intro.tpl⽂件
<!--这是个模板⽂件-->
<html>
<head>
<meta http-equiv="Content-Language" content="en" />
<meta name="GENERATOR" content="PHPEclipse 1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>{$title}</title>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#FF9966" vlink="#FF9966" alink="#FFCC99">
{$content}
</body>
</html>
这⾥⾯的内容是⽤占位符的形式,smarty的作⽤就是将占位符的内容替换成真正的数据。
这样就可以实现模板⽂件和数据⽂件强制分离,通过smarty进⾏数据的传递。
4.编写cls_MiniSmarty.php⽂件
<?php
/**
smarty模板引擎使用*
* 原本是通过smarty模板引擎给模板提供数据的
* 现在⾃⼰模仿写⼀个模板,给模板提供数据的类
* smarty运⾏时,读取模板⽂件,将模板⽂件替换成可运⾏的php⽂件
* 服务器真正运⾏的⽂件是处理后的⽂件
*/
class MiniSmarty {
//模板⽂件路径
var $template_dir = "./templates/";
/
/模板⽂件被替换后的⽂件路径
var $templates_c_dir = "./templates_c/";
//存放变量值
var $tpl_vars = array ();
//主要模拟2个⽅法
/**
* 添加数据
* 参数1:键
* 参数2:值,默认为null
*/
function assign($tpl_var, $var = null) {
if ($tpl_var != '') {
$this->tpl_vars[$tpl_var] = $var; //将数据添加到数组中
}
}
/**
* 显⽰数据
* 参数1:显⽰到哪个模板⽂件中
*/
function display($tpl_file) {
//获得模板⽂件的路径
$tpl_file_path = $this->template_dir . $tpl_file;
/
/获得模板⽂件被编译后的⽂件路径
$compile_file_path = $this->templates_c_dir . "com_" . $tpl_file . ".php";
//判断⽂件是否存在
if (!file_exists($tpl_file_path)) {
return false;
}
//不⽤每次都⽣成编译⽂件,只有编译⽂件不存在或者模板⽂件被修改了才⽣成新的编译⽂件
//相当于缓存了编译⽂件
//filemtime函数:获得⽂件的⽣成时间
if (!file_exists($compile_file_path) || filemtime($tpl_file_path) > filemtime($compile_file_path)) {
//读取模板⽂件的内容
$fpl_file_content = file_get_contents($tpl_file_path);
$newStr = myReplace($fpl_file_content);
//将替换后的字符串⽣成新的⽂件,也就是编译后的⽂件
file_put_contents($compile_file_path, $newStr);
}
//引⼊编译后的⽂件
include $compile_file_path;
}
/**
* 对模板⽂件中的内容进⾏替换,获得新的字符串
*/
function myReplace($fpl_file_content) {
$pattern = array (
'/\{\s*\$([a-zA-Z_][a-zA-Z0-9_]*)\s*\}/i'
);
$replace = array (
'<?php echo $this->tpl_vars["${1}"] ?>'
);
$newStr = preg_replace($pattern, $replace, $fpl_file_content);
return $newStr;
}
}
>
preg_replace⽅法介绍:
参数1:替换的规则
参数2:替换成的内容
参数3:替换操作的内容
5.运⾏结果
标题和内容都显⽰出来了:
结论:
真正运⾏的⽂件,既不是index.php,也不是intro.php,⽽是⼆者通过smarty作⽤后的⽂件:
com_intro.tpl.php。这个⽂件中数据来源于index.php,显⽰的布局来⾃intro.tpl,中间的桥梁是smarty。smarty的作⽤是接受数据、填充数据(替换模板中的占位符)、并加载替换后的⽂件。
三、讲解smarty使⽤细节
1.如何配置smarty?
解压后,将libs⽂件夹拷贝到项⽬⽬录下即可,然后再创建2个⽂件夹templates和templates_c,分别放模板⽂件和模板编译后⽂件。
2.使⽤smarty注意事项
①替换变量的标⽰符。
因为默认的表⽰符是{}这个和style样式中的{}发⽣冲突,所以需要修改⼀下默认的标识符,⼀般修改为:{<>}
②修改标识符的⽅法。
⽅法⼀:直接修改smarty类源码:不推荐。
⽅法⼆:使⽤smarty提供的⽅法进⾏修改。
$smarty->left_delimiter="{<";
$smarty->right_delimiter=">}";
③smarty的⼀些基本配置
$smarty->template_dir="./templates";//模板路径
$smarty->compile_dir="./templates_c";//编译路径
$smarty->caching=false;  //是否使⽤缓存
$smarty->cache_dir="./smarty_cache";//如果使⽤缓存的话:缓存的路径
3.smarty模板技术分配变量的细节问题
⼀句话:可以分配php⽀持的各种数据。
php基本数据:int double string bool
复合数据类型:array object
特殊数据类型:resource null
希望本⽂所述对⼤家的php程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。