Extra Light PHP Framework
Uri
This class is loaded automatically by the system
Content
Uri string
// http://www.domain.com/articles/hello-world.html
echo $this->uri->get_uri_string(); // output 'articles/hello-world.html'
Uri array
// http://www.domain.com/articles/hello-world.html
print_r($this->uri->get_uri_array());
/*
output:
Array
(
[0] => articles
[1] => hello-world
)
*/
Uri segment
// http://www.domain.com/articles/hello-world.html
echo $this->uri->segment(1); // output 'articles'
Total uri segments
// http://www.domain.com/articles/hello-world.html
echo $this->uri->total_uri_segments(); // output '2'