Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
The error_reporting() function sets the error_reporting directive at runtime.
<?php
// Turn off error reporting
error_reporting(0);
// Report all errors
error_reporting(E_ALL);
// Report runtime errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Report all PHP errors
error_reporting(-1);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
?>