smarty模板的使用方法实例分析

本文实例讲述了smarty模板的使用方法,分享给大家供大家参考,具体如下:

这里以smarty3为例

首先, 在官网下载smarty3模板文件,然后解压。

在解压之后的文件夹中,libs是smarty模板的核心文件,demo里面有示例程序。

我们把libs文件夹复制到我们的工作目录,然后重命名为smarty。

smarty模板的使用方法实例分析

假设我们在controller目录下的index.php中使用smarty模板。

index.php

  1. <?php
  2. require '../smarty/Smarty.class.php';
  3. $smarty = new Smarty;
  4. $smarty->debugging = false; //开启debug模式
  5. $smarty->caching = true; //开启缓存
  6. $smarty->cache_lifetime = 120; //缓存时间
  7. $smarty->left_delimiter = '<{'; //左定界符
  8. $smarty->right_delimiter = '}>'; //右定界符
  9. $smarty->template_dir = __DIR__.'/../view/'; //视图目录
  10. $smarty->compile_dir = __DIR__ . '/../smarty/compile/'; //编译目录
  11. $smarty->config_dir = __DIR__ . '/../smarty/configs/'; //配置目录
  12. $smarty->cache_dir = __DIR__ . '/../smarty/cache/'; //缓存目录
  13. $list = range('A', 'D');
  14. $smarty->assign("list", $list);
  15. $smarty->assign("name", "zhezhao");
  16. $smarty->display('index.html');

模板文件index.html

  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6. <p><h1><{$name}></h1></p>
  7. <{foreach $list as $k=>$v }>
  8. <p><h1><{$k}> : <{$v}></h1></p>
  9. <{/foreach}>
  10. </body>
  11. </html>

上述方法的优点是使用起来配置比较简单,缺点也是显而易见的,我们controller目录下可能有很多页面调用smarty模板,在每个页面都需要将上述方法配置一遍。

解决方法有两种:

将smarty模板的配置信息写到一个文件中,然后其他页面可以通过包含该文件使用smarty对象。

  1. require '../smarty/Smarty.class.php';
  2. $smarty = new Smarty;
  3. $smarty->debugging = false; //开启debug模式
  4. $smarty->caching = true; //开启缓存
  5. $smarty->cache_lifetime = 120; //缓存时间
  6. $smarty->left_delimiter = '<{'; //左定界符
  7. $smarty->right_delimiter = '}>'; //右定界符
  8. $smarty->template_dir = __DIR__.'/../view/'; //视图目录
  9. $smarty->compile_dir = __DIR__ . '/../smarty/compile/'; //编译目录
  10. $smarty->config_dir = __DIR__ . '/../smarty/configs/'; //配置目录
  11. $smarty->cache_dir = __DIR__ . '/../smarty/cache/'; //缓存目录

我们自己编写一个类,继承自Smarty类,然后将配置信息写在构造函数中。

我们编写mySmarty类

  1. <?php
  2. require '../smarty/Smarty.class.php';
  3. class mySmarty extends Smarty{
  4. public function __construct(array $options = array()){
  5. parent::__construct($options);
  6. $this->debugging = false; //开启debug模式
  7. $this->caching = true; //开启缓存
  8. $this->cache_lifetime = 120; //缓存时间
  9. $this->left_delimiter = '<{'; //左定界符
  10. $this->right_delimiter = '}>'; //右定界符
  11. $this->setTemplateDir(__DIR__.'/../view/'); //视图目录
  12. $this->setCompileDir(__DIR__ . '/../smarty/compile/'); //编译目录
  13. $this->setConfigDir(__DIR__ . '/../smarty/configs/'); //配置目录
  14. $this->setCacheDir(__DIR__ . '/../smarty/cache/'); //缓存目录
  15. }
  16. }

此时,controller里面的index.php代码可优化为:

  1. <?php
  2. require 'mySmarty.php';
  3. $smarty = new mySmarty;
  4. $list = range('A', 'D');
  5. $smarty->assign("list", $list);
  6. $smarty->assign("name", "zhezhao");
  7. $smarty->display('index.html');