php.ini 파일의 error_reporting을 다음으로 변경하세요: (권장 학습: yii tutorial)
error_reporting=E_ALL & ~E_NOTICE
php.ini 파일을 작동할 수 없는 경우 금지하고 싶을 때 다음 방법을 사용할 수 있습니다. 알림 오류 메시지가 표시된 페이지에 다음 코드를 추가합니다.
/* Report all errors except E_NOTICE */ error_reporting(E_ALL^E_NOTICE);
위 방법을 사용하여 YII 항목 파일에서 protected/index.php
error_reporting(E_ALL^E_NOTICE); // change the following paths if necessary $yii=dirname(__FILE__).'/../framework/yii.php'; $config=dirname(__FILE__).'/protected/config/main.php'; //引用系统常量配置文件 require_once dirname(__FILE__).'/protected/config/constant.php'; // remove the following lines when in production mode defined('YII_DEBUG') or define('YII_DEBUG',true); // specify how many levels of call stack should be shown in each log message defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); require_once($yii); Yii::createWebApplication($config)->run();를 수행합니다.
위 내용은 yii 닫기 오류 프롬프트의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!