PHP tip: Use error_log() to email debugging info

Have you ever come across a situation where you can't echo debugging information on-screen because the problem code is live, or the display_errors configuration directive is off? PHP's error_log() is a handy utility function that can be used to email instead of echo'ing on-screen. I like to combine it with print_r() for formatting. For example, let's say you need to see all of the data in the $_SESSION superglobal:

  1. error_log(print_r($_SESSION, TRUE), 1, 'benrothe@gmail.com');  

The second parameter to error_log(), 1 in this case, sends the contents of the first parameter to the email address specified in the third parameter. I like to use TRUE as the second parameter to print_r() to return it's output instead of printing it (which is does by default). The result is anicely formatted email in your inbox like so:

  1. From: Apache <apache@some.domain.com>  
  2. Sent: Wednesday, December 24, 2008 10:20 AM  
  3. To: benrothe@gmail.com  
  4. Subject: PHP error_log message  
  5.   
  6. Array  
  7.    (  
  8.       [member_count] => 3567120  
  9.       [member_id] => 123456  
  10.       [last_login] => 2008-12-24 10:05:25  
  11.       [first_name] => Ben  
  12.       [last_name] => Rothe  
  13.       [opt_out] => 0  
  14.    )  

Add your thoughts...

Name:

Website/URL:
(optional)

Comments:

Image Verification: