Home > php教程 > php手册 > body text

smarty模板的安装配置,smarty安装配置

WBOY
Release: 2016-06-13 09:00:28
Original
1154 people have browsed it

smarty模板的安装配置,smarty安装配置

第一步:下载Smarty模版源码包了
    百度一下“Smarty下载”,下载最新版本的Smarty模版
第二部:解压缩,将下载好的Smarty包解压缩
    右键->解压到当前文件夹...你懂的^_^
第三部:安装与配置
    1.进入解压后的文件夹,将文件夹内的libs文件夹复制到自己的工作路径下,安装完成!这就是安装?是的,不用怀疑,这就是安装,哈哈,够简单吧!^_^
    2.将刚刚复制过来的libs文件夹重命名为你自己喜欢的文件夹名字,我这里就用本站的域名phpname来命名吧
    3.在与phpname文件夹同一目录下新建以下几个文件夹(名字都可以自己起,但是要与下一步的配置一一对应):templates(用于存放模版的目录)、templates_c(用于存放编译后文件的目录)、cache(用于存放缓存的目录)、config(用于存放配置的目录)
    4.在与phpname同一目录下新建一个smarty.php配置文件(名字也可以自己起,这里起什么名到时在你要使用Smarty的.php文件中就引入什么名),代码如下:
            include ('./phpname/Smarty.class.php') ;//引入文件类
        $smarty=new Smarty; //实例化
        $smarty->template_dir="templates"; //指定模版存放目录
        $smarty->compile_dir="templates_c"; //指定编译文件存放目录
        $smarty->config_dir="config"; //指定配置文件存放目录
        $smarty->cache_dir="cache"; //指定缓存存放目录
        $smarty->caching=false; //关闭缓存(设置为true表示启用缓存)
        $smarty->left_delimiter="        $smarty->right_delimiter="}>"; //指定右标签
    ?>
    配置完成!也很简单吧!^_^
第四部:测试
    安装配置都搞定了,让我们来测试一下行不行吧
    1.在templates文件夹下新建一个index.html测试文件,测试代码如下:
    
    


        


    
    
    2.在与phpname同一目录下新建一个index.php文件:
            include ("smarty.php"); //引入配置文件
        $name="OK"; //定义变量
        $smarty->assign('name',$name); //用定义的变量$name的值("OK")替换掉模版中的
        $smarty->display("index.html"); //显示模版文件夹中的index.html
    ?>
    3.开启你的服务器,访问http://localhost/???/phpname/index.php,如果页面显示"OK",就说明Smarty安装配置成功了!如果没有显示"OK",就再对着上面的步骤重新检查一遍,本地测试过了,完全没有问题!祝你好运!

转自http://www.phpname.com/phpname_182013020733.html

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!