4

我试图弄清楚如何获取父函数的名称和参数。

例子:

function foo($a,$b){
  bar();
}

function bar(){
  // Magic Print
}

foo('hello', 'world');

输出:

foo('hello','world')

有小费吗?

4

1 回答 1

5

您可以从debug_backtrace()获取信息。

function bar(){
  $backtrace = debug_backtrace();
  $t = $backtrace[1];
  print $t["function"] . "('" . implode("','", $t["args"]) . "')\n";
}
于 2010-05-11T15:00:40.750 回答