I want the list of all functions executed to a certain point in code, somehow like debug_backtrace() but including functions not in the exact thread that leads to where debug_backtrace() is called. e.g :

a();

function a() { 
 b();     
 c(); 
 d(); 
}

function b() { }
function c() { }
function d() { print all_trace(); }

would produce :

a(), b(), c(), d()

and not

a(), d()

like debug_backtrace() would

link|improve this question

59% accept rate
feedback

2 Answers

up vote 1 down vote accepted

check out xdebug tracing facility

link|improve this answer
feedback

You could install a tick handler, and on every tick use debug_backtrace to find which function you are in and add it to a list. It will kill performance, but would give the list you desire.

$functions_called=array();


function tick_handler()
{
    $trace=debug_backtrace();

    //we're in tick_handler, let's eat that
    array_shift($trace);

    //if we're in a function, log it!
    if (!empty($trace))
    {
        $function=$trace[0]['function'];

        //log function - lets just remember it was called
        global $functions_called;
        $functions_called[$function]=1;
    }
}

//install our tick handler...
declare(ticks=1);
register_tick_function('tick_handler');

Here's how you'd get the output you specify from this:

function all_trace()
{
     global $functions_called;
     $output='';
     $separator='';
     foreach($functions_called as $func=>$dummy)
     {
          $output.=$separator.$func.'()';
          $separator=', ';
     }
     return $output;
}

Pretty nasty really - as others suggest, better to use tools like xdebug designed for the job if you can...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.