ホームページ  >  記事  >  PHPフレームワーク  >  yii2 でデバッグを有効にする方法

yii2 でデバッグを有効にする方法

angryTom
angryTomオリジナル
2019-11-06 17:45:499670ブラウズ

yii2 でデバッグを有効にする方法

#yii2デバッグを有効にする方法

1. 次の 2 行のコードを web/index.php に追加します。ファイル:

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

2. yii config ディレクトリの web.php ファイルを開き、次の設定

if (YII_ENV_DEV) {   
    // configuration adjustments for 'dev' environment
    $config['bootstrap'][] = 'debug';
    $config['modules']['debug'] = [        'class' => 'yii\debug\Module',
    // uncomment the following to add your IP if you are not connecting from localhost.
        'allowedIPs' => ['127.0.0.1', '我的IP'],  
    ];

    $config['bootstrap'][] = 'gii';
    $config['modules']['gii'] = [        
    'class' => 'yii\gii\Module',        
    // uncomment the following to add your IP if you are not connecting from localhost.
        'allowedIPs' => ['127.0.0.1', '我的IP'],
    ];
}

を見つけて、そこに IP を追加します。


推奨: 「

YII チュートリアル

以上がyii2 でデバッグを有効にする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。