Error reporting levels are controlled by the error_reporting config directive in php.ini
You can also set it for each script you run, using the error_reporting() function.
For example...
<?php error_reporting(0); ?>
...turns all error reporting off.
Max