CodeIgniter: How to get Controller, Action, URL information

前端 未结 11 1227
死守一世寂寞
死守一世寂寞 2020-12-07 09:21

I have these URLs:

  • http://backend.domain.com/system/setting/edit/12
  • http://backend.domain.com/product/edit/1

How to get controller nam

11条回答
  •  轮回少年
    2020-12-07 09:59

    $this->router->fetch_class(); 
    

    // fecth class the class in controller $this->router->fetch_method();

    // method

提交回复
热议问题