L'environnement d'exploitation de ce tutoriel : système Windows 7, PHP version 7.1, ordinateur DELL G3
En PHP, on peut utiliser l'opérateur de contrôle d'erreur @
ou la fonction error_reporting() pour bloquer une seule ligne ou un seul fichier, mais comment bloquer toutes les erreurs ? Laissez-moi vous le présenter ci-dessous.
Comment ignorer toutes les erreurs dans php
1. Entrez dans le répertoire d'installation de PHP, recherchez et ouvrez le fichier de configuration php.ini
2 Recherchez display_errors
3. Désactivé pour le fermer Tous les rapports d'erreurs PHP.
Comme indiqué ci-dessous :
; 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
Apprentissage recommandé : "Tutoriel vidéo PHP"
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!