본문 바로가기
php

php 에러 보이도록 설정 error_reportion / display_errors

by 하이바네 2022. 7. 15.
반응형

php에서 에러가 보이도록 설정하는 방법은

 

php코드 내에서 강제로 하는 방법과 php.ini파일 내에서 설정을 해두는 방버빙 있다.

 

1. 코드 내에서 처리

<?php
  error_reporting( E_ALL );
  ini_set( "display_errors", 1 );
?>

 

코드내에서 할 경우 값들에 대한 세부적인 설정은 다음 사이트에서 참조하면 된다.

https://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting

 

PHP: Runtime Configuration - Manual

It's important to note that when display_errors is "on", PHP will send a HTTP 200 OK status code even when there is an error. This is not a mistake or a wrong behavior, but is because you're asking PHP to output normal HTML, i.e. the error message, to the

www.php.net

 

 

2. php.ini 파일에서 설정

display_errors = On

 

 

난 일단 코드를 실행 할때 에러가 나타나는것을 좋아하지 않는다;;

최대한 예외처리를 해서 display_errors on 인 상태라도 오류가 안 뜨도록.... 

728x90

댓글