热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Yii框架集成Smarty模板说明

在protected目录下建立文件夹vendor/smarty,把smarty的类包放入其中

 1. 在protected目录下建立文件夹vendor/smarty,把smarty的类包放入其中 

Yii

  2. 在extensions目录下边建立文件Csmarty.php

Yii

Csmarty.php文件具体内容如下(意思自己体会理解):

template_dir =SMARTY_VIEW_DIR.self::DS.'tpl';
 $this->compile_dir =SMARTY_VIEW_DIR.self::DS.'tpl_c';
 $this->caching = true;
 $this->cache_dir =SMARTY_VIEW_DIR.self::DS.'cache';
 $this->left_delimiter =  '{';
 $this->right_delimiter = '}';
 $this->cache_lifetime = 3600;
     }
     function init() {}
}
smarty    


  3. 根据CSmarty.php代码内容建立相应的文件夹

      4. 主配置文件设置

打开protected/config/main.php

在components数组中加入


'smarty'=>array(
    'class'=>'application.extensions.CSmarty',
   ),

在控制器里边:    


  5. 得到smarty实例


 Yii::app()->smarty();
实例:
public function actionIndex(){
    Yii::app()->smarty() -> assign('name','张三');
//a.tpl所在目录protected/views/smarty/tpl/a.tpl,具体代码{$name}
     Yii::app()->smarty() -> display('a.tpl');
}

Yii  

此时系统会报错:原因:

YII注册了一个自动加载类spl_autoload_register(array('YiiBase','autoload')),SMARTY也注册了一个自动加载类,spl_autoload_register('smartyAutoload'),YII 注册在前,这样在遇到一个类名的时候,先执行的是YII的自定义自动加载类的函数,对应SMARTY里的每个类名而言,也是先调用YII的自动加载类的函 数,但是如果不符合YII自动加载的条件的话,就会执行SMARTY的自动加载类的函数,然而,SMARTY的类名在自动加载类的时候,确符合了YII自 动加载类的逻辑语句,结果就是YII使用Include语句要包含的类肯定找不到。

解决方法:

当SMARTY的类自动加载的时候,跳出在YII定义的自动加载函数,这样就会执行SMARTY的加载函数。

具体实现是,修改YIIBase类里面的autoload函数,增加如下代码:


public static function autoload($className){
     //只要类名包含smarty的,无论大小写,都返回,
    //这样就跳出了YII自动加载类而去执行
   //SMARTY的自动加载类函数
 if(preg_match('/smarty/i', $className)){    
  return;
     }
再次测试:。。。。。


Yii

This  is  ok

      6. 优化

在action中直接用Yii::app()->smarty就可以试用smarty了。

如果每次在action中使用Yii::app()->smarty比较麻烦的话,

可以在components下的Controller中可以加入


protected $smarty = '';
protected function init() {
       $this->smarty = Yii::app()->smarty;
  }

 然后在action中就直接可以用$this->smarty使用smarty了
推荐阅读
author-avatar
啊咧咧咧咧咧咧咧列
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有