PHP debug_print_backtrace() 函數
PHP debug_print_backtrace() 函數

定義和用法
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 超級全局變量
- 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 雜項 函數