Home  >  Q&A  >  body text

Thinkphp3.2版本,获取指定控制器下所有方法。

get_class_methods(IndexController)//已经测试过无效
get_class_methods(new IndexController)//可以获取当前控制器下所有方法和父级的所有方法

使用类反射

$r=new \ReflectionClass(new IndexController());
p($r->getmethods());//返回所有的方法包括父级

网上目前资料还未能解决我的困惑

WashWash2782 days ago1139

reply all(2)I'll reply

  • 数据分析师

    数据分析师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.

    reply
    0
  • ringa_lee

    ringa_lee2017-03-28 13:15:09

    我这试过都没有问题的,你的类有没有定义什么属性

    reply
    0
  • Cancelreply