// Turn off all error reporting
error_reporting(0);
// Turn on a list error
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Turn on all errors except E_NOTICE
error_reporting(E_ALL ^ E_NOTICE);
# Turn on all error reporting
error_reporting(E_ALL);
/*
run:
*/