Possible Duplicate:
PHP - I want to know how to get function trace

I need to see what a php script does when I call it.

I'm calling a script like:

php -f thescript.php --option1 --option2

The code is something like this:

class thescript {

    static function func01($some_parameter) {
        //some code here
    }

    static function func02($some_parameter) {
        //some code here
    }

    static function func03($some_parameter) {
        //some code here
    }

}

function helperFunction01($some_parameter)
{
    //some code here
}

How can I trace all the functions and methods that the call travels?

Best Regards,

有帮助吗?

解决方案

You could execute a debug_backtrace() to see through which calls you end up somewhere.

其他提示

I think you could use xdebug to do this http://xdebug.org/docs/execution_trace

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top