父函数的名称和参数

时间:2010-05-11 14:58:43

标签: php function discovery

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

示例:

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

function bar(){
  // Magic Print
}

foo('hello', 'world');

输出:

foo('hello','world')

任何提示?

1 个答案:

答案 0 :(得分:5)

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

function bar(){
  $backtrace = debug_backtrace();
  $t = $backtrace[1];
  print $t["function"] . "('" . implode("','", $t["args"]) . "')\n";
}