>  기사  >  PHP 프레임워크  >  yii 닫기 오류 프롬프트

yii 닫기 오류 프롬프트

(*-*)浩
(*-*)浩원래의
2019-11-05 14:39:362757검색

yii 닫기 오류 프롬프트

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.