Return to Snippet

Revision: 33106
at October 12, 2010 01:11 by sb_01


Updated Code
// USE IT FOR LIVE MODE | PROJECT IS OFFICAL RELEASED
error_reporting(0);
@ini_set('display_errors', 0);

// USE IT DEBUGGING MODE | PROJECT IS IN DEVELOPING
error_reporting(E_ALL);
@ini_set('display_errors', '1');

Revision: 33105
at October 6, 2010 05:29 by sb_01


Initial Code
// USE IT FOR LIVE MODE | PROJECT IS OFFICAL RELEASED
error_reporting(0);
@ini_set('display_errors', 0);

// USE IT DEBUGGING MODE | PROJECT IS IN DEVELOPING
error_reporting(E_ALL);
ini_set('display_errors', '1');

Initial URL


Initial Description


Initial Title
Debuging Mode and Live Mode - Error Handling

Initial Tags
php, debug, error

Initial Language
PHP