yii2从零开始一,安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2从零开始一,安装相关的知识,希望对你有一定的参考价值。
1.官网下载软件包 这里选择普通包,也可以是增强包
2.运行basic目录下 requirements.php ,查看环境是否符合要求,yii2要求php5.4以上
3.运行 basic/web下index.php 安装,一般会提示错误,是因为cookie没设置,打开basic/config/web.php 第12行,找到 cookieValidationKey,随便写一些字符串
4。这个时候就可以运行了,要自己写控制器,方法。访问默认路径如下 index.php?r=hello/index2 。hello是控制器名,index2是方法名。照着默认控制器site抄一遍即可
5.安装smarty ,需要
composer。composer是一个PHP依赖包解决方案,自己去查资料,这里不详细叙述了
linux下执行命令
php composer.phar require --prefer-dist yiisoft/yii2-smarty
windows下执行命令 composer require --prefer-dist yiisoft/yii2-smarty
当然,前提是要先进入到yii的basic目录下。
安装成功后,打开basic/config/web.php,添加如下配置
- return [
- //....
- ‘components‘ => [
- ‘view‘ => [
- ‘renderers‘ => [
- ‘tpl‘ => [
- ‘class‘ => ‘yii\smarty\ViewRenderer‘,
- //‘cachePath‘ => ‘@runtime/Smarty/cache‘,
- ],
- ],
- ],
- ],
- ];
控制器 里填写 return $this->renderPartial(‘index.html‘, [‘username‘ => ‘别再等‘]);
然后创建 index.html模版,模版里面就可以使用smarty变量啦 ,比如写上 Hello,{$username}
以上是关于yii2从零开始一,安装的主要内容,如果未能解决你的问题,请参考以下文章