debug_print_backtrace 打印一条回溯。
发表日期:2021-07-01 08:54:55 | 来源: | | 浏览(931) 分类:错误处理 函数
debug_print_backtrace
(PHP 5, PHP 7, PHP 8)
debug_print_backtrace — 打印一条回溯。
说明
debug_print_backtrace(int
$options
= 0, int $limit
= 0): voiddebug_print_backtrace() 打印了一条 PHP 回溯。它打印了函数调用、被 included/required 的文件和 eval() 的代码。
参数
-
options
-
从 5.3.6 开始,这个参数是以下选项的位掩码:
debug_print_backtrace() 选项 DEBUG_BACKTRACE_IGNORE_ARGS 是否忽略 "args" 的索引,包括所有的 function/method 的参数,能够节省内存开销。 -
limit
-
从 5.4.0 开始,这个参数能够用于限制返回堆栈帧的数量。 默认为 (
limit
=0
) ,返回所有的堆栈帧。
返回值
没有返回值。
更新日志
版本 | 说明 |
---|---|
5.4.0 |
添加了可选的参数 limit 。
|
5.3.6 |
添加了可选的参数 options 。
|
范例
示例 #1 debug_print_backtrace() 范例
<?php // include.php filefunction a() { b(); } function b() { c(); } function c(){ debug_print_backtrace(); } a(); ?>
<?php // 文件 test.php// 这是你应该运行的文件include 'include.php'; ?>
以上例程的输出类似于:
#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]
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- 预定义常量(0)
- debug_backtrace 产生一条回溯跟踪(backtrace)(0)
- debug_print_backtrace 打印一条回溯。(0)
- error_clear_last 清除最近一次错误(0)
- error_get_last 获取最后发生的错误(0)
- error_log 发送错误信息到某个地方(0)
- error_reporting 设置应该报告何种 PHP 错误(0)
- restore_error_handler 还原之前的错误处理函数(0)
- restore_exception_handler 恢复之前定义过的异常处理函数。(0)
- set_error_handler 设置用户自定义的错误处理函数(0)
- set_exception_handler 设置用户自定义的异常处理函数(0)
- trigger_error 产生一个用户级别的 error/warning/notice 信息(0)
- user_error trigger_error() 的别名(0)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)