In CodeIgniter, How Can I Have PHP Error Messages Emailed to Me?
问题 I'd like to receive error logs via email. For example, if a Warning-level error message should occur, I'd like to get an email about it. How can I get that working in CodeIgniter? 回答1: You could extend the Exception core class to do it. Might have to adjust the reference to CI's email class, not sure if you can instantiate it from a library like this. I don't use CI's email class myself, I've been using the Swift Mailer library. But this should get you on the right path. Make a file MY