Skip to content

Instantly share code, notes, and snippets.

@eddieajau
Created May 10, 2012 05:18
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save eddieajau/2651181 to your computer and use it in GitHub Desktop.
Save eddieajau/2651181 to your computer and use it in GitHub Desktop.
Printing a clean debug backtrace in PHP.
// PHP < 5.3.6
foreach (debug_backtrace() as $trace)
{
echo sprintf("\n%s:%s %s::%s", $trace['file'], $trace['line'], $trace['class'], $trace['function']);
}
die;
// PHP >= 5.3.6
debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
die;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment