getting function's argument names
- by Gotys
in PHP Consider this function:
function test($name, $age) {}
I need to somehow extract the parameter names (for generating custom documentations automatically) so that I could do something like:
get_func_argNames('test');
and it would return Array['name','age'] .
Is this even possible in PHP ?