-1

I'm googling this topic but I didn't find it.

I would like to receive an email with the exception details ocurred in a codeigniter project.

Carlos Diaz
  • 321
  • 1
  • 15

1 Answers1

0

You can Implement PHP's set error handler and set exception handler

  1. set_error_handler
  2. set_exception_handler

Also, check out : PHP: How to use set_error_handler() to properly deal with all errors except notices?

Div
  • 63
  • 2
  • 10