Rumah > Artikel > pembangunan bahagian belakang > Bagaimana untuk mengabaikan semua ralat dalam php
Persekitaran pengendalian tutorial ini: sistem Windows 7, PHP versi 7.1, komputer DELL G3
Dalam PHP, kita boleh menggunakan operator kawalan ralat @
atau fungsi error_reporting() untuk menyekat satu baris atau satu fail. Tetapi bagaimana anda menyekat semua ralat? Izinkan saya memperkenalkannya kepada anda di bawah.
Bagaimana untuk mengabaikan semua ralat dalam php
1 Masukkan direktori pemasangan PHP, cari dan buka fail konfigurasi php.ini
2. Cari display_errors
3 Kemudian tetapkan nilai display_errors kepada Mati untuk mematikan semua laporan ralat PHP.
adalah seperti berikut:
; 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
Pembelajaran yang disyorkan: "Tutorial Video PHP"
Atas ialah kandungan terperinci Bagaimana untuk mengabaikan semua ralat dalam php. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!