Wednesday, October 30, 2013

PHP error reporting

Great for development:
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
// probably more error reporting than you'll want
?>

No comments:

Post a Comment