ホームページ > 記事 > PHPフレームワーク > 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 サイトの他の関連記事を参照してください。