Reputation: 97
I want to count total number of segments in codeigniter so I can display error if user/visitor enter additional segment in my url.
Upvotes: 2
Views: 5776
Reputation: 7948
Have you checked the manual yet? There is such method that will get the total segments. $this->uri->total_segments()
Or also you can use $this->uri->segment_array()
.
$total = count($this->uri->segment_array());
Upvotes: 7