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);
?>게시글 목록
| 번호 | 제목 |
|---|---|
| 20579 | |
| 20572 | |
| 20569 | |
| 20563 | |
| 11083 |
jQuery
마우스 오버시 레이어 출력~
2
|
| 11080 |
jQuery
메뉴 고정
2
|
| 11078 | |
| 20557 | |
| 20162 | |
| 20549 | |
| 20542 | |
| 20525 | |
| 20522 | |
| 11071 |
jQuery
facebook timeline 스타일 따라하기
6
|
| 11067 | |
| 20519 | |
| 20504 | |
| 20500 | |
| 11062 | |
| 20497 | |
| 20493 | |
| 11056 | |
| 11050 |
JavaScript
html 테그 제거하는 함수
5
|
| 11046 |
JavaScript
새로고침(F5) 금지 하는 자바 스크립트
3
|
| 11043 |
JavaScript
자바스크립트 문자열 비교
2
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기