You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->uri->segment(n); // n=1 for controller, n=2 for method, etc
Using the Router Class
//-------------------------------------
//! Get Controller Name
//-------------------------------------
$this->router->fetch_class();
//-------------------------------------
//! Get Method Name
//-------------------------------------
$this->router->fetch_method();
//-------------------------------------
//! Get Module Name in HMVC
//-------------------------------------
$this->router->fetch_module();
👍