codeigniter
Сегмент URI CodeIgniter
Поиск…
Сегменты URI:
Например, рассмотрите следующий URI:
http://stackoverflow.com/questions/some-number/how-can-i-do-this/others
Сегмент позволяет получить конкретную строку URI формы сегмента, где n - номер сегмента. Сегменты пронумерованы слева направо. Например, следующий код:
$this->uri->segment(n)
Используется для извлечения определенного сегмента из URI, где n - номер сегмента.
echo $this->uri->segment(0);//it will print stackoverflow.com
echo $this->uri->segment(1);//it will print questions
echo $this->uri->segment(2);//it will print some-number
echo $this->uri->segment(3);//it will print how-can-i-do-this
echo $this->uri->segment(4);//it will print others
Получить последний и последний сегмент URI
Получить последний сегмент
echo end($this->uri->segment_array()); //it will print others
Получить до последнего сегмента
echo $this->uri->segment(count($this->uri->segment_array())-1); //it will print how-can-i-do-this
Дополнительная информация: [ http://stackoverflow.com/questions/9221164/code-igniter-get-before-last-uri-segment][1]
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow