Posts Tagged ‘ custom php exceptions

25 Jun 2009

Beautifull php exceptions Posted by Insane in Php | No responses

Una manera de notificar los errorres del interprete de una forma nice (creo). function _myErrorReporter(){ $template = file_get_contents('my_errors.phtml'); die(str_replace('%str_err%',$e,$template)); } set_error_handler(create_function('$x, $y', 'throw new Exception($y,$x);'), E_ALL & E_NOTICE & E_WARNING); set_exception_handler(create_function('$e', _myErrorReporter($e); '));

Tags:,