«

PHP异常处理:debug_print_backtrace()函数的用法

时间:2024-3-1 20:51     作者:韩俊     分类: PHP


debug_print_backtrace

(PHP 5)

debug_print_backtrace — 打印一条回溯。

<h3>说明</h3>
 void <strong>debug_print_backtrace</strong>
  ([ int <code>$options</code> = 0
 [, int <code>$limit</code> = 0
]] )
<p>
 <strong>debug_print_backtrace()</strong> 打印了一条 PHP 回溯。它打印了函数调用、被 included/required 的文件和
 eval() 的代码。
</p>

参数

options

截至 5.3.6,这个参数是以下选项的位掩码: debug_print_backtrace() 选项 DEBUG_BACKTRACE_IGNORE_ARGS 是否忽略 "args" 的索引,包括所有的 function/method 的参数,能够节省内存开销。

limit

截至 5.4.0,这个参数能够用于限制返回堆栈帧的数量。 默认为 (limit=0) ,返回所有的堆栈帧。

<h3>返回值</h3>
<p>
 没有返回值。
</p>

更新日志

版本 说明 5.4.0 添加了可选的参数 limit。 5.3.6 添加了可选的参数 options

<h3>范例</h3>
<p>
  <p><strong>Example #1 <strong>debug_print_backtrace()</strong> 范例</strong></p>
<?php
// include.php file

function a() {
    b();
}

function b() {
    c();
}

function c(){
    debug_print_backtrace();
}

a();

?>
<?php
// 文件 test.php
// 这是你应该运行的文件

include 'include.php';
?>
 <p>以上例程的输出类似于:</p>
#0  c() called at [/tmp/include.php:10]
#1  b() called at [/tmp/include.php:6]
#2  a() called at [/tmp/include.php:17]
#3  include(/tmp/include.php) called at [/tmp/test.php:3]

参见

debug_backtrace() - 产生一条回溯跟踪(backtrace)

标签: php php教程

热门推荐