is there a way to achieve this in PHP?
echo list_args('a_user_defined_function_name_here_such_as_say_hello');
and this outputs something like
$first_name
$last_name
for a function defined as;
function say_hello($first_name, $last_name){
echo "Hello $first_name $last_name";
}
So basically, what I'm looking for is a function explainer or something of that sort... & if that thing can get into a php doc based comment extractor. that would be even better..
ReflectionFunction