Skip to content

Instantly share code, notes, and snippets.

@osde8info
Created July 31, 2015 13:43
Show Gist options
  • Save osde8info/3d80a8e80548c5ba3044 to your computer and use it in GitHub Desktop.
Save osde8info/3d80a8e80548c5ba3044 to your computer and use it in GitHub Desktop.
PHP DEBUG_BACKTRACE_IGNORE_ARGS
$dbt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
foreach($dbt as $d){
echo $d['class'].$d['function'].$d['line'].PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment