Skip to content

Instantly share code, notes, and snippets.

@hayden-t
Last active January 28, 2019 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hayden-t/87d8ea7f63fb886bc957880ae2958596 to your computer and use it in GitHub Desktop.
Save hayden-t/87d8ea7f63fb886bc957880ae2958596 to your computer and use it in GitHub Desktop.
php debug backtrace
<?php
foreach(debug_backtrace() as $i){
echo $i['file'].' '.$i['line'].' ' .$i['function'].'<br/>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment