php-如何找到要构建页面的功能列表?
作者:互联网
我想要执行到代码中特定位置的所有函数的列表,以某种方式像debug_backtrace()一样,但包括不在导致调用debug_backtrace()的确切线程中的函数.例如:
a();
function a() {
b();
c();
d();
}
function b() { }
function c() { }
function d() { print all_trace(); }
会产生:
a(), b(), c(), d()
并不是
a(), d()
像debug_backtrace()一样
解决方法:
查看xdebug tracing facility
标签:stack-trace,php 来源: https://codeday.me/bug/20191105/1996998.html