我希望能够在 PHP 中获取函数调用的列。
使用debug_backtrace()
,我可以获取函数调用的行,但无法获取列。
我想要做的是能够区分同一行上的两个函数调用。
例如:
function test() {
//do something with the line/column of the called function.
}
test(); test(); //How to know whether it is the first or second test() which is called?