Heim > Artikel > Backend-Entwicklung > So ignorieren Sie alle Fehler in PHP
Die Betriebsumgebung dieses Tutorials: Windows 7-System, PHP-Version 7.1, DELL G3-Computer
In PHP können wir den Fehlerkontrolloperator @
oder die Funktion error_reporting() verwenden, um eine einzelne Zeile oder eine einzelne Datei zu blockieren, aber wie alle Fehler blockieren? Lassen Sie mich es Ihnen unten vorstellen.
So ignorieren Sie alle Fehler in PHP
1. Geben Sie das PHP-Installationsverzeichnis ein, suchen und öffnen Sie die Konfigurationsdatei php.ini
2. Setzen Sie dann den Wert von display_errors auf Aus, um alle PHP-Fehlerberichte zu schließen.
Wie unten gezeigt:
; 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
Empfohlenes Lernen: „
PHP-Video-TutorialDas obige ist der detaillierte Inhalt vonSo ignorieren Sie alle Fehler in PHP. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!