当前位置: 首页 > 工具软件 > yii2-wschat > 使用案例 >

yii2整合smarty

徐隐水
2023-12-01

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’ => [
],
],

 类似资料: