我正在寻找一种在PHP中打印调用堆栈的方法。

如果函数刷新IO缓冲区,则加分。


当前回答

奇怪的是没有人这样发帖:

debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);

这实际上是在没有垃圾的情况下打印backtrace -只是调用了什么方法和在哪里。

其他回答

如果你想要一个堆栈跟踪,它看起来非常类似于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() 

请看看这个utils类,可能会有帮助:

用法:

<?php
/* first caller */
 Who::callme();

/* list the entire list of calls */
Who::followme();

源类:https://github.com/augustowebd/utils/blob/master/Who.php

您可能想查看debug_backtrace,或者debug_print_backtrace。

记录跟踪

$e = new Exception;
error_log(var_export($e->getTraceAsString(), true));

谢谢@Tobiasz

debug_backtrace ()