【php调试系列】debug_print_backtrace()可回溯调用过程,哪个类调了哪个类,一目了然
程序员文章站
2022-05-13 21:41:05
...
<?php
class a{
function __construct($a=[]) {
(new b())->t();
}
}
class b{
function t() {
print_r(debug_print_backtrace());
}
}
$obj=new a();
运行结果,:
#0 b->t() called at [D:\PHP\test.php:5]
#1 a->__construct() called at [D:\PHP\test.php:18]
debug_print_backtrace()函数可打印栈轨迹
上一篇: 最快最简单的排序——桶排序
下一篇: php编写的一个E-mail验证类