이 튜토리얼의 운영 환경: 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!