PHP 教程 PHP 表单 PHP 高级教程 PHP 数据库 PHP XML PHP 与 AJAX PHP 参考手册

发布于 2016-11-18 14:35:31 | 58 次阅读 | 评论: 0 | 来源: 网络整理


定义和用法

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] 


最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务