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...