Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用wordpress。我想查看 wordpress 调用的所有函数的回溯。这是否可能仅使用 php,或者如果没有,我可以在哪里插入 debug_backtrace() 来查看所有函数调用?
debug_backtrace()(转储时)将向您显示函数调用,并包括指向您调用跟踪的函数。你不能要求它为整个应用程序做一个堆栈(除非整个应用程序只是一长串函数调用和包含,在这种情况下你仍然必须找到最后一步并将跟踪调用放入那里)。
debug_backtrace()
因此,对于 Wordpress,如果您试图通过反复试验来了解应用程序,您可以尝试在您认为可能的地方添加跟踪。