• 如何在ThinkPHP2.1中使用Smarty3


    今天上课 讲解到了ThinkPHP框架的模板扩展。
    使用ThinkPHP框架的时候不想采用TP自带的模版系统,而使用第三方的模版系统,为什么有人有这样的想法?
    有要求就要满足么,搭建了一下,顺便整理一下贴出来
    大家仔细看看手册了,

    除了使用内置的模板引擎外,系统还支持模板引擎扩展。并且官方已经提供了包括Smarty、EaseTemplate、TemplateLite和Smart在内的第三方模板引擎扩展。

    既然如此按手册说明 其实就简简单单的2步

    1. 在你项目配置文件“Conf/config.php”中添加

     "TMPL_ENGINE_TYPE" => "Smarty"


    2. 复制Smarty(我的这个版本是Smarty-3.0.8)的libs文件夹到ThinkPHP框架目录的Vendor目录下面,文件夹名改为“Smarty”就可以了

    测试

    Lib/Action/IndexAction.class.php方法内

    public function index()
    {
         $this->assign("id","哈尔滨智华软件-php");
         $arr=array("哈尔滨","智华软件","php培训","www.zhihuasoft.com");
         $this->assign("arr",$arr);
         $this->display();
    }


        
    Tpl/default/Index/index.html

    {$id}  <hr />
    {foreach from=$arr item=vo}
         {$vo}
    {/foreach}
    <hr />
    {foreach $arr as $vo}
         {$vo}
    {/foreach}
  • 相关阅读:
    web service 项目 和 普通 web项目 的 区别
    1) Apache Maven 's README.txt
    spring + rs + RocketMQ 【精】
    wadl 的自动生成(cxf版本3.1.1)
    新建maven web 项目后,出现的小问题
    cxf-rs client 调用
    wadl 的自动生成(cxf版本2.7.6)
    Java学习路线
    Tomcat 学习记录
    Spring Boot 学习记录
  • 原文地址:https://www.cnblogs.com/zhouwenwu/p/2433740.html
Copyright © 2020-2023  润新知