_F [superglobal]
The currently executed function.
- It can be used in a function to call itself recursively, especially when the function is defined in a position where it cannot reference itself without additional effort.
function f(){ printvar( _F ); } f(); // prints info about function 'f'