How is it possible to output methods in classes?
class Test {
function wee($param1, $param2){
return $param1.$param2;
}
}
I want to output the method wee and all its content.. I also need to know the names and how many parameters the method requires