>백엔드 개발 >PHP 문제 >PHP의 모든 오류를 무시하는 방법

PHP의 모든 오류를 무시하는 방법

青灯夜游
青灯夜游원래의
2021-10-12 14:28:592417검색

이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터

PHP에서는 오류 제어 연산자 @ 또는 error_reporting() 함수를 사용하여 단일 라인이나 단일 파일을 차단할 수 있지만 어떻게 모든 오류를 차단하려면? 아래에서 소개해드리겠습니다.

php

1. PHP 설치 디렉토리에 들어가서 php.ini 구성 파일을 찾아 엽니다

2. 그런 다음 display_errors 값을 다음으로 설정합니다. 닫으려면 끄기 모든 PHP 오류 보고서.

아래와 같이:

; This directive controls whether or not and where PHP will output errors,
; notices and warnings too. Error output is very useful during development, but
; it could be very dangerous in production environments. Depending on the code
; which is triggering the error, sensitive information could potentially leak
; out of your application such as database usernames and passwords or worse.
; For production environments, we recommend logging errors rather than
; sending them to STDOUT.
; Possible Values:
;   Off = Do not display any errors
;   stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
;   On or stdout = Display errors to STDOUT
; Default Value: On
; Development Value: On
; Production Value: Off
; http://php.net/display-errors
display_errors = Off

추천 학습: "

PHP 비디오 튜토리얼

"

위 내용은 PHP의 모든 오류를 무시하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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