Skip to content

Instantly share code, notes, and snippets.

@zoster
Created April 28, 2013 19:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoster/5478090 to your computer and use it in GitHub Desktop.
Save zoster/5478090 to your computer and use it in GitHub Desktop.
Debugging with an error log
//setup
error_reporting(E_ALL);
ini_set('error_log','error.log');
//use
error_log($variable);
error_log("\n".var_export($message, true));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment