A code like below:
//in library
$ts=$this->CI->uri->total_segments();
$offset= $this->CI->uri->segment($ts);
//in controller
$ts=$this->uri->total_segments();
$offset= $this->uri->segment($ts);
This gives you the value of the last segment of your URL, it is very useful when you paginate and need the value of the offset.
Geshan