我正在寻找一种方法来打印在PHP中的调用堆栈。
如果函数刷新IO缓冲区的奖励积分。
我正在寻找一种方法来打印在PHP中的调用堆栈。
如果函数刷新IO缓冲区的奖励积分。
如果你想生成一个回溯,你正在寻找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
。
(见第一个的手册,找出为什么“和/或” ;-))
超过可读debug_backtrace()
$e = new \Exception;
var_dump($e->getTraceAsString());
#2 /usr/share/php/PHPUnit/Framework/TestCase.php(626): SeriesHelperTest->setUp()
#3 /usr/share/php/PHPUnit/Framework/TestResult.php(666): PHPUnit_Framework_TestCase->runBare()
#4 /usr/share/php/PHPUnit/Framework/TestCase.php(576): PHPUnit_Framework_TestResult->run(Object(SeriesHelperTest))
#5 /usr/share/php/PHPUnit/Framework/TestSuite.php(757): PHPUnit_Framework_TestCase->run(Object(PHPUnit_Framework_TestResult))
#6 /usr/share/php/PHPUnit/Framework/TestSuite.php(733): PHPUnit_Framework_TestSuite->runTest(Object(SeriesHelperTest), Object(PHPUnit_Framework_TestResult))
#7 /usr/share/php/PHPUnit/TextUI/TestRunner.php(305): PHPUnit_Framework_TestSuite->run(Object(PHPUnit_Framework_TestResult), false, Array, Array, false)
#8 /usr/share/php/PHPUnit/TextUI/Command.php(188): PHPUnit_TextUI_TestRunner->doRun(Object(PHPUnit_Framework_TestSuite), Array)
#9 /usr/share/php/PHPUnit/TextUI/Command.php(129): PHPUnit_TextUI_Command->run(Array, true)
#10 /usr/bin/phpunit(53): PHPUnit_TextUI_Command::main()
#11 {main}"
要记录跟踪
$e = new Exception;
error_log(var_export($e->getTraceAsString(), true));
由于@Tobiasz
回溯转储了一大堆的垃圾,你不需要的。 这需要很长,难以阅读。 所有你usuall曾经想要的是“什么从那里叫什么?” 下面是一个简单的静态功能的解决方案。 我通常把它放在一个名为“调试”类,它包含了所有的调试我的实用功能。
class debugUtils {
public static function callStack($stacktrace) {
print str_repeat("=", 50) ."\n";
$i = 1;
foreach($stacktrace as $node) {
print "$i. ".basename($node['file']) .":" .$node['function'] ."(" .$node['line'].")\n";
$i++;
}
}
}
你这样称呼它:
debugUtils::callStack(debug_backtrace());
它产生这样的输出:
==================================================
1. DatabaseDriver.php::getSequenceTable(169)
2. ClassMetadataFactory.php::loadMetadataForClass(284)
3. ClassMetadataFactory.php::loadMetadata(177)
4. ClassMetadataFactory.php::getMetadataFor(124)
5. Import.php::getAllMetadata(188)
6. Command.php::execute(187)
7. Application.php::run(194)
8. Application.php::doRun(118)
9. doctrine.php::run(99)
10. doctrine::include(4)
==================================================
奇怪的是,没有人张贴了这个办法:
debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
这实际上打印回溯没有垃圾 - 正是方法被调用,并在那里。
如果你想有一个堆栈跟踪看起来非常相似,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()
var_dump(debug_backtrace());
这是否你想要做什么?
见debug_print_backtrace
。 我想你可以叫flush
,如果你想以后。
phptrace是打印PHP堆栈随时当你想无需安装任何扩展一个伟大的工具。
有phptrace的两个主要功能:第一,PHP的打印调用栈不需要安装任何东西,第二,追查这需要安装其提供的扩展PHP的执行流程。
如下:
$ ./phptrace -p 3130 -s # phptrace -p <PID> -s
phptrace 0.2.0 release candidate, published by infra webcore team
process id = 3130
script_filename = /home/xxx/opt/nginx/webapp/block.php
[0x7f27b9a99dc8] sleep /home/xxx/opt/nginx/webapp/block.php:6
[0x7f27b9a99d08] say /home/xxx/opt/nginx/webapp/block.php:3
[0x7f27b9a99c50] run /home/xxx/opt/nginx/webapp/block.php:10
使用debug_backtrace
得到一个什么样的功能和方法已被调用,哪些文件已被纳入,导致在点回溯debug_backtrace
被调用。
请看一看这个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_backtrace
,或者debug_print_backtrace
。
Walltearer的解决方案是出色的,特别是如果封闭在一个“前”标签:
<pre>
<?php debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); ?>
</pre>
- 其中规定了在不同的行的电话,编号整齐
我已经适应了上面唐布里格斯的答案 ,而不是使用公共印刷,现场服务器上工作时,这可能是你的心头大患内部错误日志。 此外,像添加几个选项更多的修改,包括完整的文件路径,而不是基本的名字(因为,有可能是在不同的路径文件名称相同),并且还(对于那些谁需要它)一个完整的节点堆栈输出:
class debugUtils {
public static function callStack($stacktrace) {
error_log(str_repeat("=", 100));
$i = 1;
foreach($stacktrace as $node) {
// uncomment next line to debug entire node stack
// error_log(print_r($node, true));
error_log( $i . '.' . ' file: ' .$node['file'] . ' | ' . 'function: ' . $node['function'] . '(' . ' line: ' . $node['line'] . ')' );
$i++;
}
error_log(str_repeat("=", 100));
}
}
// call debug stack
debugUtils::callStack(debug_backtrace());