(→개요) |
(→개요) |
||
1번째 줄: | 1번째 줄: | ||
{{DISPLAYTITLE:PHP error_reporting()}} | |||
==개요== | ==개요== | ||
;PHP error_reporting() | ;PHP error_reporting() |
2019년 12월 11일 (수) 11:26 판
1 개요
- PHP error_reporting()
- 오류 보고(reporting) 수준을 설정하는 PHP 함수
2 예시
오류 출력 끄기
PHP
Copy
error_reporting(0);
모든 오류 보기
PHP
Copy
error_reporting(E_ALL);
PHP
Copy
error_reporting(E_ALL);
PHP
Copy
error_reporting(-1);
PHP
Copy
ini_set('error_reporting', E_ALL);
E_NOTICE를 제외한 모든 오류 보기
PHP
Copy
error_reporting(E_ALL & ~E_NOTICE);
PHP
Copy
error_reporting(E_ERROR | E_WARNING);
3 같이 보기
4 참고
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.