let's say I have a source code in several files already. What I would like to do now is to get the entire function definition of a particular function. What I have is the function name and the line number of the function definition in that file, if that's of any help.
So after all I'd like to get the function definition of function_name() and would like to get
function function_name( $a = null, $b = true ) {
$i_am_test = 'foo';
return $i_am_test;
}
or whatever the function definition is. Most tools (including grep etc.) only return the first line function function_name( $a = null, $b = true ) { but I'd need the entire function definition.
I'm pretty happy with DocBlox for that matter, but it doesn't parse/retreive the function definitions in any way...
Any help is much appreciated! Thanks!