Last active
December 22, 2015 10:29
-
-
Save bigwheel/6459368 to your computer and use it in GitHub Desktop.
phpで任意の箇所でスタックトレース表示するコード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (debug_backtrace() as $func) | |
{ | |
\Log::warning($func['file'] . ' - ' . $func['class'] . $func['type'] | |
. $func['function'] . '(' . $func['args'] . ')[L' . $func['line'] . ']'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment