errors.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php namespace Laravel;
  2. /**
  3. * Define a closure that will return the formatted error message when
  4. * when given an exception. This function will be used by all of error
  5. * handlers to create a more readable message.
  6. */
  7. $message = function($e)
  8. {
  9. $search = array(APP_PATH, SYS_PATH);
  10. $replace = array('APP_PATH/', 'SYS_PATH/');
  11. $file = str_replace($search, $replace, $e->getFile());
  12. return rtrim($e->getMessage(), '.').' in '.$file.' on line '.$e->getLine().'.';
  13. };
  14. /**
  15. * Define a closure that will return a more readable version of the
  16. * severity of an exception. This function will be used by the error
  17. * handler when parsing exceptions.
  18. */
  19. $severity = function($e)
  20. {
  21. $levels = array(
  22. 0 => 'Error',
  23. E_ERROR => 'Error',
  24. E_WARNING => 'Warning',
  25. E_PARSE => 'Parsing Error',
  26. E_NOTICE => 'Notice',
  27. E_CORE_ERROR => 'Core Error',
  28. E_CORE_WARNING => 'Core Warning',
  29. E_COMPILE_ERROR => 'Compile Error',
  30. E_COMPILE_WARNING => 'Compile Warning',
  31. E_USER_ERROR => 'User Error',
  32. E_USER_WARNING => 'User Warning',
  33. E_USER_NOTICE => 'User Notice',
  34. E_STRICT => 'Runtime Notice',
  35. );
  36. $code = $e->getCode();
  37. return (array_key_exists($code, $levels)) ? $levels[$code] : $code;
  38. };
  39. /**
  40. * Create the exception handler function. All of the error handlers
  41. * registered by the framework call this closure to avoid duplicate
  42. * code. Each of the formatting closures defined above will be
  43. * passed into the handler for convenient use.
  44. */
  45. $handler = function($e) use ($message, $severity)
  46. {
  47. $config = Config::get('error');
  48. if ($config['log'])
  49. {
  50. call_user_func($config['logger'], $e, $severity($e), $message($e), $config);
  51. }
  52. call_user_func($config['handler'], $e, $severity($e), $message($e), $config);
  53. exit(1);
  54. };
  55. /**
  56. * Register the PHP exception handler. The framework throws exceptions
  57. * on every error that cannot be handled. All of those exceptions will
  58. * fall into this closure for processing.
  59. */
  60. set_exception_handler(function($e) use ($handler)
  61. {
  62. $handler($e);
  63. });
  64. /**
  65. * Register the PHP error handler. All PHP errors will fall into this
  66. * handler, which will convert the error into an ErrorException object
  67. * and pass the exception into the common exception handler.
  68. */
  69. set_error_handler(function($number, $error, $file, $line) use ($handler)
  70. {
  71. $handler(new \ErrorException($error, $number, 0, $file, $line));
  72. });
  73. /**
  74. * Register the PHP shutdown handler. This function will be called at
  75. * the end of the PHP script or on a fatal PHP error. If an error has
  76. * occurred, we will convert it to an ErrorException and pass it to
  77. * the common exception handler.
  78. */
  79. register_shutdown_function(function() use ($handler)
  80. {
  81. if ( ! is_null($error = error_get_last()))
  82. {
  83. extract($error, EXTR_SKIP);
  84. $handler(new \ErrorException($message, $type, 0, $file, $line));
  85. }
  86. });
  87. /**
  88. * Turn off all PHP error reporting and display. Since the framework
  89. * will be displaying the exception messages, we don't want PHP to
  90. * display any ugly error information.
  91. */
  92. error_reporting(-1);
  93. ini_set('display_errors', 'Off');