我正在试图弄清楚如何获取父函数的名称和参数。
示例:
function foo($a,$b){
bar();
}
function bar(){
// Magic Print
}
foo('hello', 'world');
输出:
foo('hello','world')
任何提示?
答案 0 :(得分:5)
您可以从debug_backtrace()获取信息。
function bar(){
$backtrace = debug_backtrace();
$t = $backtrace[1];
print $t["function"] . "('" . implode("','", $t["args"]) . "')\n";
}