首页 > 代码库 > mac下yii2安装Smarty模板
mac下yii2安装Smarty模板
在项目根目录输入命令: php composer.phar require --prefer-dist yiisoft/yii2-smarty
如果报错 Could not open input file: composer.phar 则重新输入命令:omposer require --prefer-dist yiisoft/yii2-smarty
config下web.php的components里进行配置:
‘view‘ => [
‘renderers‘ => [
‘tpl‘ => [
‘class‘ => ‘yii/smarty/ViewRenderer‘,
//‘cachePath‘ => ‘@runtime/Smarty/cache‘,
],
],
],
控制器 controller.php:
public function actionIndex(){
return $this->renderPartial(‘index‘, [‘text‘ => ‘ world!‘]);
}
模板 index.php:
hello{$text}
会输出:hello world!
mac下yii2安装Smarty模板
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。