Yii2 使用十五 安装smarty3模板引擎及使用

github地址:

https://github.com/yiisoft/yii2-smarty

一、安装

推荐通过命令安装:

php composer.phar require --prefer-dist yiisoft/yii2-smarty

要注意composer.phar的位置应该在Yii项目里。

也可以在composer.json里写上要加载的模块

"yiisoft/yii2-smarty": "~2.0.0"

官方提示需要安装subversion,不知道为什么有这种需求。

二、使用

修改web.php配置文件
return [
    //....
    'components' => [
        'view' => [
            'renderers' => [
                'tpl' => [
                    'class' => 'yii\smarty\ViewRenderer',
                    //'cachePath' => '@runtime/Smarty/cache',
                ],
            ],
        ],
    ],
];
写controller.php
<pre name="code" class="php">    public function actionIndex1(){
    	return $this->renderPartial('index1.tpl', ['username' => 'zhangsan']);
    }

 view:index1.tpl 
 
Hello,{$username}
<br />
smarty版本:{$smarty.version}
<br />
1+1={1+1}
<br />
当前时间:{time()}


显示结果:
Hello,zhansan 
smarty版本:3.1.23 
1+1=2 
当前时间:1432390050

你可能感兴趣的:(PHP,smarty,yii,模板引擎,Components)