yii2整合smarty

来源:互联网 发布:养生软件下载排行榜 编辑:程序博客网 时间:2024/06/04 19:50

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


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


return [    //....    'components' => [        'view' => [            'renderers' => [                'tpl' => [                    'class' => 'yii\smarty\ViewRenderer',                    //'cachePath' => '@runtime/Smarty/cache',                ],            ],        ],    ],];


public function actionTest() {    return $this->render('test.tpl',['test'=>'smarty']);}


<div>123456{$test}</div>

        'urlManager' => [
            'enablePrettyUrl' => true,
            'showScriptName' => false,
            'rules' => [
            ],
        ],

原创粉丝点击