yii2에서 디버그에 액세스하는 방법

王林
풀어 주다: 2020-03-11 13:52:53
원래의
2889명이 탐색했습니다.

yii2에서 디버그에 액세스하는 방법

1. 프로젝트 설치 디버그 도구

php composer.phar require --prefer-dist yiisoft/yii2-debug
로그인 후 복사

2 web/index.php를 구성합니다

defined('YII_DEBUG') or define('YII_DEBUG', true); defined('YII_ENV') or define('YII_ENV', 'dev');
로그인 후 복사

3. config/web.php

if(file_exists(__DIR__ . "/web-local.php")) { $localConfig = require __DIR__ . "/web-local.php"; $config = ArrayHelper::merge($config, $localConfig); }
로그인 후 복사

구성(관련 튜토리얼 권장 사항:yii Framework)

4 web-local.php#를 추가합니다. #

 [ 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'warning'], ], ], ], ], ]; if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $localConfig['bootstrap'][] = 'debug'; $localConfig['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', '::1'], 'allowedIPs' => ['*'], ]; $localConfig['bootstrap'][] = 'gii'; $localConfig['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', '::1'], ]; } return $localConfig;
로그인 후 복사
5 런타임 디렉터리를 읽고 쓸 수 있도록 설정합니다

위 내용은 yii2에서 디버그에 액세스하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!