0

is there any way to display all the methods called in the codeigniter profiler.

Also like to display which method calls which method and which method trigger the query

4

1 回答 1

0

不幸的是,你的问题对我来说不是很清楚。我不太确定你想做什么。

在更高版本中有一个 PHP 命令可用,称为 debug-backtrace。 http://php.net/manual/en/function.debug-backtrace.php

这为您提供了执行以获取特定方法的所有命令的堆栈跟踪。

codeigniter profiler 是一个系统库。如果您确实需要某个功能,则可以扩展分析器类以获得您需要的功能。CI 手册在关于“扩展本机库”的部分中解释了如何执行此操作

于 2013-09-19T11:42:20.023 回答