PHP: Reflection - Manual - PHP: Hypertext Preprocessor
* My Reflection_Method class */ class My_Reflection_Method extends ReflectionMethod { public $visibility = array(); public function __construct ($o, $m) { parent:: __construct ($o, $m); $this-> visibility = Reflection:: getModifierNames ($this-> ());} cla...