【PHP】クラス内のメソッド一覧を取得する。

$methods = get_class_methods('myclass');
// or
$methods = get_class_methods(new myclass());

クラス名かクラスのインスタンスを渡せばOK。