首页 > PHP资讯 > PHP培训技术 > 1个例子搞定smarty的配置

1个例子搞定smarty的配置

PHP培训技术

一,模板,框架,cms的区别

在介绍smarty之前先讨论一下他们的区别,说实话,刚开始做开发的时候,真的没搞清楚他们的区别,感觉都差不多,记得有一次去面试,面试的人问我,模板和框架有什么区别,我说没什么区别,我汗。举个例子:

1,如果把一个项目比做一个人体模具的话,那么模板就是衣服,而框架呢就是骨架。

2,没有衣服没关系可以不穿,如果没有骨架的话,要衣服有什么呢?php本身就是脚本语言,本身就可以输出。

3,但是如果做大项目没有模板的话,如果你要把网站改版一次,我想你会疯了得。

4,框架是约束程序员开发,使他们的代码尽量一致,相互都可以改。

5,cms是半成品的人体模具,东西都做的差不多,你只要在里面修修补补,就差不多,他对程序员的约束更大。


二,什么是smarty

Smarty是一个php模板引擎。更准确的说,它分开了逻辑程序和外在的表现内容,提供了一种易于管理的方法。css使html和style分开了,jquery的出现使得html和js分开了,我想模板的出现使php和html分开了。smarty算是一个不错的模板吧。

三,举例如下

1,配置文件init.php

查看复制打印?
  1. define('ROOT_PATH', dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR);   
  2. define('TEM_PATH', ROOT_PATH ."smartytest". DIRECTORY_SEPARATOR);   
  3.   
  4. $_path = array(   
  5.  '.',   
  6.  ROOT_PATH .DIRECTORY_SEPARATOR."smartytest".DIRECTORY_SEPARATOR.'smarty'.DIRECTORY_SEPARATOR.'libs',   
  7.  get_include_path(),   
  8. );   
  9. set_include_path(implode(PATH_SEPARATOR, $_path));   
  10. ?>  

2,control.php底基类

查看复制打印?
  1. session_start();   
  2.   
  3. require('Smarty.class.php');   
  4.   
  5. class Controller   
  6. {   
  7.  public $tpl = NULL;   
  8.   
  9.  public function __construct() {   
  10.  $this->tpl = new Smarty();   
  11.  $this->tpl->debugging = false;   
  12.  $this->tpl->compile_check = true;   
  13.  $this->tpl->force_compile = false;   
  14.  $this->tpl->cache_dir = TEM_PATH ."templates_cache";   
  15.  $this->tpl->template_dir = TEM_PATH . "templates";   
  16.  $this->tpl->compile_dir  = TEM_PATH . "templates_c";   
  17.  $this->tpl->cache  =  false;   
  18.  }   
  19.   
  20.  public function addCss($css) {   
  21.  if (!is_array($css)) {   
  22.  $this->tpl->append('cssArr', $css);   
  23.  } else {   
  24.  $this->tpl->append('cssArr', $css, true);   
  25.  }   
  26.  }   
  27.   
  28.  public function addJs($js) {   
  29.  if (!is_array($js)) {   
  30.  $this->tpl->append('jsArr', $js);   
  31.  } else {   
  32.  $this->tpl->append('jsArr', $js, true);   
  33.  }   
  34.  }   
  35. }   
  36. ?>  
tpl = new Smarty(); $this->tpl->debugging = false; $this->tpl->compile_check = true; $this->tpl->force_compile = false; $this->tpl->cache_dir = TEM_PATH ."templates_cache"; $this->tpl->template_dir = TEM_PATH . "templates"; $this->tpl->compile_dir  = TEM_PATH . "templates_c"; $this->tpl->cache  =  false; } public function addCss($css) { if (!is_array($css)) { $this->tpl->append('cssArr', $css); } else { $this->tpl->append('cssArr', $css, true); } } public function addJs($js) { if (!is_array($js)) { $this->tpl->append('jsArr', $js); } else { $this->tpl->append('jsArr', $js, true); } }}?>

3,入口index.php

查看复制打印?
  1.   
  2. require_once 'init.php';   
  3. require_once 'control.php';   
  4.   
  5. class indexController extends Controller {   
  6.  private $templateName  = 'index.tpl';   
  7.  private $test  = array("安徽","合肥","六安","苏埠");   
  8.   
  9.  public function __construct(){   
  10.  parent::__construct();   
  11.  }   
  12.   
  13.  //页面入口程序   
  14.  public function indexAction(){   
  15.  $this->tpl->assign("checkbox",$this->test);   
  16.  }   
  17.   
  18.  //模板渲染   
  19.  public function showTemplate(){   
  20.  $this->tpl->display($this->templateName);   
  21.  }   
  22.   
  23. }   
  24. $objIndex = new indexController();   
  25. $objIndex->indexAction();   
  26. $objIndex->showTemplate();   
  27. ?>  
tpl->assign("checkbox",$this->test); } //模板渲染 public function showTemplate(){ $this->tpl->display($this->templateName); }}$objIndex = new indexController();$objIndex->indexAction();$objIndex->showTemplate();?>

想法很简单的一种方法来搭建smarty。点击这里下载这个例子

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持20不支持0