在/console/controllers新建你的控制器 <? php namespace console\controllers; use Yii; use yii\console\Controller; class TestController extends Controller { 写自己的 ...
分类:
其他好文 时间:
2017-03-28 21:28:59
阅读次数:
197
试了好多方法都没成功,下面方法绝对能成功设置 在框架里面有源码,在/vendor/yiisoft/yii2/web/Application.php的第34行找到了: 然而我们最好不要改框架里的内容,还是重新设置的好! 在/config/web.php 或者main.php里面设置 然后就是在控制器里 ...
分类:
其他好文 时间:
2017-03-27 21:55:01
阅读次数:
167
【Yii系列】Yii2.0基础框架 以上就是【Yii系列】Yii2.0基础框架的全部内容了,更多内容请关注:CPP学习网_CPP大学 本文固定链接:CPP学习网_CPP大学-【Yii系列】Yii2.0基础框架 ...
分类:
其他好文 时间:
2017-03-27 19:19:47
阅读次数:
134
1:首先在配置文件main-local.php components=>[]里面配置 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', 'useFileTransport' =>false,//这句一定有,false发送邮件,true只是生成邮件在 ...
分类:
其他好文 时间:
2017-03-26 20:30:20
阅读次数:
950
如果对Prestashop好奇的小伙伴快点进来看看吧,我开始接触了Prestashop这个开源的系统,这个一个非常棒的电商系统。因为我对这个Prestashop系统完全没有了解,但是上网却看不到太多的知识讲解,最多就是有安装的教程!!以下就讲解一下我所遇到的问题还有一些知识点: (1)安装的时候可真 ...
分类:
其他好文 时间:
2017-03-25 13:41:17
阅读次数:
225
/** * @inheritdoc */ public function add($object) { if ($object instanceof Item) { //①如果是role或permission对象就创建auth_rule if ($object->ruleName && $this-... ...
分类:
其他好文 时间:
2017-03-24 14:06:50
阅读次数:
164
protected function addItem($item) { $time = time(); if ($item->createdAt === null) { $item->createdAt = $time; } if ($item->updatedAt === null) { ... ...
分类:
数据库 时间:
2017-03-24 13:59:04
阅读次数:
268
一个contoller CustomerController里怎么调用另一个controller里的action,Acontoller调用SiteContoller的actionShow($id), url显示上是Customer/index 不带参数的actionShow() redirect使用 ...
分类:
其他好文 时间:
2017-03-24 12:11:20
阅读次数:
145
首先我自己没有使用自带的user表 要想使用yii rbac组件 首先需要在我们的配置文件中开启 rbac组件 在common/config/main-local.php 中添加 下边的组建'authManager' => [ 'class' => 'yii\rbac\DbManager', 'it ...
分类:
其他好文 时间:
2017-03-22 21:31:40
阅读次数:
486
配置在@app/config/params.php里, 读取方式为Yii::$app->params['paramsName']。比如Yii::$app->params['sitename'] ...
分类:
Web程序 时间:
2017-03-22 13:00:01
阅读次数:
165