PHP怎么打印调用堆栈
内容导读
收集整理的这篇技术教程文章主要介绍了PHP怎么打印调用堆栈,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含2367字,纯文字阅读大概需要4分钟。
内容图文
在给定的PHP代码中,child_func()函数调用parent_func()函数,该函数进一步调用grandparent_func()函数,从而生成调用堆栈。推荐学习:《PHP教程》
PHP打印调用堆栈的三种方法如下:
方法1:使用debug_print_backtrace()函数打印调用堆栈。
例:
<?php // 用于打印PHP调用堆栈的PHP程序//调用函数parent_funcfunction child_func() { parent_func(); } // 调用grandparent_func函数function parent_func() { grandparent_func(); } // 函数的作用是:打印调用堆栈function grandparent_func() { debug_print_backtrace(); } //主函数调用 child_func(); ?>
输出:
#0 grandparent_func() called at [/home/905a3b4d90f10b30521fedcb56c99fba.php:12]#1 parent_func() called at [/home/905a3b4d90f10b30521fedcb56c99fba.php:7]#2 child_func() called at [/home/905a3b4d90f10b30521fedcb56c99fba.php:21]
方法2:使用debug_backtrace()函数打印调用堆栈。
例:
<?php // 用于打印PHP调用堆栈的PHP程序//函数调用parent_funcfunction child_func() { parent_func(); } // 函数调用grandparent_funcfunction parent_func() { grandparent_func(); } // 函数的作用是:打印调用堆栈function grandparent_func() { var_dump(debug_backtrace()); } // 主函数调用 child_func(); ?>
输出:
array(3) { [0]=> array(4) { ["file"]=> string(42) "/home/2b81f040639170c49a6a58adb23d5154.php" ["line"]=> int(12) ["function"]=> string(16) "grandparent_func" ["args"]=> array(0) { } } [1]=> array(4) { ["file"]=> string(42) "/home/2b81f040639170c49a6a58adb23d5154.php" ["line"]=> int(7) ["function"]=> string(11) "parent_func" ["args"]=> array(0) { } } [2]=> array(4) { ["file"]=> string(42) "/home/2b81f040639170c49a6a58adb23d5154.php" ["line"]=> int(21) ["function"]=> string(10) "child_func" ["args"]=> array(0) { } }}
方法3: Exception类的getTraceAsString()成员函数返回一个调用堆栈。
例:
<?php // 用于打印PHP调用堆栈的PHP程序//函数调用parent_funcfunction child_func() { parent_func(); } // 函数调用grandparent_funcfunction parent_func() { grandparent_func(); } // 函数的作用是:打印调用堆栈function grandparent_func() { $e = new Exception; var_dump($e->getTraceAsString()); } // 主函数调用child_func(); ?>
输出:
string(207) "#0 /home/8d8303d43667a4915d43dab7d63de26d.php(12): grandparent_func()#1 /home/8d8303d43667a4915d43dab7d63de26d.php(7): parent_func()#2 /home/8d8303d43667a4915d43dab7d63de26d.php(22): child_func()#3 {main}"
本篇文章就是关于PHP怎么打印调用堆栈的三种方法介绍,希望对需要的朋友有所帮助!
以上就是PHP怎么打印调用堆栈的详细内容,更多请关注Gxl网其它相关文章!
内容总结
以上是为您收集整理的PHP怎么打印调用堆栈全部内容,希望文章能够帮你解决PHP怎么打印调用堆栈所遇到的程序开发问题。 如果觉得技术教程内容还不错,欢迎将网站推荐给程序员好友。
内容备注
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。