PHP error handling and reporting

Quick and dirty PHP error handling:

error_reporting( E_ALL | E_STRICT );
ini_set( 'display_errors', 'on' );

Leave a Reply