PHP 스크립트에서 에러메시지 제어하기 옵션 > 개발자팁

매출이 오르면 내리는 수수료! 지금 수수료센터에서 전자결제(PG)수수료 비교견적 신청해 보세요!

개발자팁

개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.

PHP 스크립트에서 에러메시지 제어하기 옵션 정보

PHP PHP 스크립트에서 에러메시지 제어하기 옵션

본문

PHP 스크립트상에서 에러메시지를 제어할 수 있는데 여러가지 옵션이 있습니다.
옵션을 참고하셔서 디버깅할때 활용하시기 바랍니다.
옵션을 바꾸면서 테스트를 해보시기 바랍니다.

출처 : http://php.net/manual/en/function.error-reporting.php

<?php

// Turn off all error reporting , 모든 에러메시지 표시하기 않기
error_reporting(0);

// Report simple running errors, 실행에러만 간단히 표시
error_reporting(E_ERROR E_WARNING E_PARSE);

// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);

// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL E_NOTICE);

// Report all PHP errors (see changelog)
error_reporting(E_ALL);

// Report all PHP errors
error_reporting(-1);

// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);

?>
추천
0

댓글 0개

전체 5,352
개발자팁 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT