Smarty简明教程

来源:互联网 发布:日语翻译网络兼职 编辑:程序博客网 时间:2024/05/17 03:22
一. 安装
  下载最新版本的Smarty。解压下载的文件(目录结构还蛮复杂的)。接下来演示给大家一个安装实例,看过应该会举一反三的。
  (1) 在根目录下建立了新的目录learn/,再在learn/里建立一个目录smarty/。将刚才解压缩出来的目录的libs/拷贝到smarty/里,再在smarty/里新建templates目录,templates里新建cache/,templates/,templates_c/, config/。
  (2) 新建一个模板文件:index.tpl,将此文件放在learn/smarty/templates/templates目录下,代码如下:
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"此处DOCTYPE
  声明不全,下午纠结了好一会,终于看到了,新手朋友们关注下">
  <html>
  <head>
  <metahttp-equiv="Content-Type" content="text/html;charset=gb2312">
  <title>Smarty</title></head>
  <body>{#$hello#}</body>
  </html>
  新建index.php,将此文件放在learn/下:
  <?php
  require 'smarty/libs/Smarty.class.php';
  $smarty = new Smarty();//设置各个目录的路径,这里是安装的重点
  $smarty->template_dir ="smarty/templates/templates";
  $smarty->compile_dir ="smarty/templates/templates_c";
  $smarty->config_dir = "smarty/templates/config";
  $smarty->cache_dir ="smarty/templates/cache";
  //smarty模板有高速缓存的功能,如果这里是true的话即打开caching,但是会造成网页不立即更新的问题,当然也可以通过其他的办法解决
  $smarty->caching = false;
  $smarty->left_delimiter = "{#"; //重新定义边界,因为默认边界“{}“符,在html页面中嵌入js脚本文件编写代码段时使用的就是”{}“符,自定义边界符还可以是<{ }>, {/ /} 等
  $smarty->right_delimiter = "#}";
  $hello = "Hello World!";//赋值
  $smarty->assign("hello",$hello);//引用模板文件
  $smarty->display('index.tpl');?>
  (3) 执行index.php就能看到Hello World!了。
  二. 赋值
  在模板文件中需要替换的值用大括号{}括起来,值的前面还要加$号。例如{$hello}。这里可以是数组,比如{$hello.item1},{$hello.item2}…
  而PHP源文件中只需要一个简单的函数assign(var , value)。
  简单的例子:
  *.tpl:
  *.php:
  $hello[name]= “Mr. Green”;
  $hello[time]=”morning”;
  $smarty->assign(“exp”,$hello);
  output:
  Hello,Mr.Green!Good morning
  三. 引用
  网站中的网页一般header和footer是可以共用的,所以只要在每个tpl中引用它们就可以了。
  示例:*.tpl:
  {include file="header.tpl"}
  {* body of template goes here *}
  {include file="footer.tpl"}
原创粉丝点击