PHP debug_print_backtrace() 函数
PHP debug_print_backtrace() 函数
完整的 PHP Error 参考手册定义和用法
debug_print_backtrace() 函数打印 backtrace。
该函数显示由 debug_print_backtrace() 函数代码生成的数据。
语法
debug_print_backtrace()
实例
<?php
function one($str1, $str2)
{
two("Glenn", "Quagmire");
}
function two($str1, $str2)
{
three("Cleveland", "Brown");
}
function three($str1, $str2)
{
debug_print_backtrace();
}
one("Peter", "Griffin");
?>
function one($str1, $str2)
{
two("Glenn", "Quagmire");
}
function two($str1, $str2)
{
three("Cleveland", "Brown");
}
function three($str1, $str2)
{
debug_print_backtrace();
}
one("Peter", "Griffin");
?>
上面代码的输出如下所示:
#0 three(Cleveland, Brown) called at [C:webfoldertest.php:8]
#1 two(Glenn, Quagmire) called at [C:webfoldertest.php:4]
#2 one(Peter, Griffin) called at [C:webfoldertest.php:15]
#1 two(Glenn, Quagmire) called at [C:webfoldertest.php:4]
#2 one(Peter, Griffin) called at [C:webfoldertest.php:15]
完整的 PHP Error 参考手册
相关文章
- PHP 超级全局变量
- PHP 函数
- PHP 面向对象
- PHP $_GET 变量
- PHP date() 函数
- PHP 过滤器
- PHP JSON
- PHP array_column() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect() 函数
- PHP array_intersect_key() 函数
- PHP array_reduce() 函数
- PHP array_slice() 函数
- PHP array_unshift() 函数
- PHP asort() 函数
- PHP current() 函数
- PHP in_array() 函数
- PHP shuffle() 函数
- PHP 5 Date/Time 函数
- PHP 杂项 函数