Is it possible to do something like this?
public function something() {
$thisMethodName = method_get_name();
}
Where method_get_name()
returns the method's name?
Is it possible to do something like this?
public function something() {
$thisMethodName = method_get_name();
}
Where method_get_name()
returns the method's name?
Why can't you do this?