Muhammad Asfund
Muhammad Asfund

Reputation: 97

How to count total number of segments in codeigniter?

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

Answers (1)

user1978142
user1978142

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

Related Questions