欢迎访问服务器技术网-www.fuwuqijishu.com

PHP debug_print_backtrace() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 122次浏览 0个评论 扫描二维码
文章目录[隐藏]

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”);
?>

上面代码的输出如下所示:

#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]


完整的 PHP Error 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2214.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900