欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

Yii2.0使用Gii生成代码

程序员文章站 2022-03-17 11:29:14
...

开启Gii

config/web.php:

$config = [ ... ];
if (YII_ENV_DEV) {
    $config['bootstrap'][] = 'gii';
    $config['modules']['gii'] = 'yii\gii\Module';
}

在web/index.php中设置YII_ENV_DEV:

defined('YII_ENV') or define('YII_ENV', 'dev');

如果是从非localhost访问需要在配置文件中作如下设置:

'gii' => [
    'class' => 'yii\gii\Module',
    'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.*', '192.168.178.20'] // adjust this to your needs
],

测试:

http://hostname/index.php?r=gii

Yii2.0使用Gii生成代码

相关标签: yii yii2.0 Gii