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,不知道为什么有这种需求。
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']); }
Hello,{$username} <br /> smarty版本:{$smarty.version} <br /> 1+1={1+1} <br /> 当前时间:{time()}