Php Disable Errors

[Solved] Php Disable Errors | Php - Code Explorer | yomemimo.com
Question : php disable errors

Answered by : emir-kurtovic

error_reporting(0);
@ini_set('display_errors', 0);

Source : | Last Update : Sat, 03 Apr 21

Question : php disable html errors

Answered by : steamboatid

ini_set('html_errors', false);
-- OR edit php.ini --
html_errors = Off

Source : https://stackoverflow.com/questions/10868976/how-to-make-php-errors-in-text-instead-of-html | Last Update : Sun, 28 Nov 21

Answers related to php disable errors

Code Explorer Popular Question For Php