我正在寻找一种在PHP中打印调用堆栈的方法。
如果函数刷新IO缓冲区,则加分。
我正在寻找一种在PHP中打印调用堆栈的方法。
如果函数刷新IO缓冲区,则加分。
当前回答
如果一个人只是对文件感兴趣,你可以使用以下:
print_r (array_column debug_backtrace()、“文件”);
同样地,您可以用不同的键替换文件,只是为了查看该数据。
其他回答
您可能想查看debug_backtrace,或者debug_print_backtrace。
记录跟踪
$e = new Exception;
error_log(var_export($e->getTraceAsString(), true));
谢谢@Tobiasz
如果你想生成一个反向跟踪,你需要寻找debug_backtrace和/或debug_print_backtrace。
例如,第一个会给你一个像这样的数组(引用手册):
array(2) {
[0]=>
array(4) {
["file"] => string(10) "/tmp/a.php"
["line"] => int(10)
["function"] => string(6) "a_test"
["args"]=>
array(1) {
[0] => &string(6) "friend"
}
}
[1]=>
array(4) {
["file"] => string(10) "/tmp/b.php"
["line"] => int(2)
["args"] =>
array(1) {
[0] => string(10) "/tmp/a.php"
}
["function"] => string(12) "include_once"
}
}
它们显然不会刷新I/O缓冲区,但您可以自己使用flush和/或ob_flush来实现这一点。
(请参阅第一个的手册页,找出为什么“and/or”;-))
Walltearer的解决方案非常出色,特别是如果包含在'pre'标签中:
<pre>
<?php debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); ?>
</pre>
-它将调用放在单独的行上,整齐地编号
如果你想要一个堆栈跟踪,它看起来非常类似于php的异常堆栈跟踪格式,那么可以使用我写的这个函数:
function debug_backtrace_string() {
$stack = '';
$i = 1;
$trace = debug_backtrace();
unset($trace[0]); //Remove call to this function from stack trace
foreach($trace as $node) {
$stack .= "#$i ".$node['file'] ."(" .$node['line']."): ";
if(isset($node['class'])) {
$stack .= $node['class'] . "->";
}
$stack .= $node['function'] . "()" . PHP_EOL;
$i++;
}
return $stack;
}
这将返回如下格式的堆栈跟踪:
#1 C:\Inetpub\sitename.com\modules\sponsors\class.php(306): filePathCombine()
#2 C:\Inetpub\sitename.com\modules\sponsors\class.php(294): Process->_deleteImageFile()
#3 C:\Inetpub\sitename.com\VPanel\modules\sponsors\class.php(70): Process->_deleteImage()
#4 C:\Inetpub\sitename.com\modules\sponsors\process.php(24): Process->_delete()