你能从PHP的方法中获取方法名称吗?
有可能做这样的事情吗?
public function something() {
$thisMethodName = method_get_name();
}
在何处返回方法的名称?method_get_name()
有可能做这样的事情吗?
public function something() {
$thisMethodName = method_get_name();
}
在何处返回方法的名称?method_get_name()
当然,你想要神奇的常数。
function myFunction() { print __FUNCTION__." in ".__FILE__." at ".__LINE__."\n"; }
从 php 手册中了解更多信息