Reputation: 2553
How to get method name from URL using codeigniter 3. I heard that $this->router->method; is deprecated .
$this->router->method;
Upvotes: 0
Views: 2265
Reputation: 825
I think $this->router->method included in ver 3, previously it was method $this->router->fetch_method();
$this->router->method
$this->router->fetch_method();
See this (page link) - Hope this helps.
Upvotes: 1