get_class_methods(IndexController)//已经测试过无效
get_class_methods(new IndexController)//可以获取当前控制器下所有方法和父级的所有方法
使用类反射
$r=new \ReflectionClass(new IndexController()); p($r->getmethods());//返回所有的方法包括父级
网上目前资料还未能解决我的困惑
数据分析师2017-10-01 01:09:09
Thinkphp3.2 version, get all methods under the specified controller. -PHP Chinese website Q&A-Thinkphp3.2 version, get all methods under the specified controller. -PHP Chinese website Q&A
Let’s take a look and learn.