这里有三个方法function_one
,function_two
并且function_three
在Example
课堂上。
class Example
{
private function function_one() { ... }
protected function function_two() { ... }
public function function_three() { ... }
public function check_here()
{
if (is_public_method('function_three')) {
return true;
} else {
return false;
}
}
}
所以,我想知道哪个访问修饰符(public
, protected
, private
)是方法。虚数is_public_method
应该返回真,因为function_three
是public
方法。有没有办法做到这一点?