14Oct
How to set error level and output in PHP
Published in Blog, Uncategorised by admin / 0 CommentsYou can set the error reporting level in PHP and also define whether it is displayed to the user or saved to a log file.
The level can be defined either in the php.ini, .htaccess or directly inside a PHP script.
The logging level options are:
E_ALL – will log every error, including notice messages
E_WARNING – will log [...]