Skip to content

Instantly share code, notes, and snippets.

@0m3r
Last active November 4, 2020 13:14
Show Gist options
  • Save 0m3r/ddc3547d70c33cf5463d to your computer and use it in GitHub Desktop.
Save 0m3r/ddc3547d70c33cf5463d to your computer and use it in GitHub Desktop.
ligth php debug_backtrace
<?php
$trace = debug_backtrace();
foreach ($trace as &$call) {
unset($call['object']);
unset($call['args']);
}
echo '<pre>';
print_r($trace);
echo '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment