您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1270 复制当前网址

debug_print_backtrace



PHP debug_print_backtrace() 函数

定义和用法

debug_print_backtrace() 函数输出 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");
?>

输出:

#0 three(Cleveland, Brown) called at [C:\webfolder\test.php:8]
#1 two(Glenn, Quagmire) called at [C:\webfolder\test.php:4]
#2 one(Peter, Griffin) called at [C:\webfolder\test.php:15]


文章来源:https://liqingbo.com/blog-564.html

上一篇:error_get_last

下一篇:debug_backtrace

评论