codeigniter
CodeIgniter URI Segment
Szukaj…
Segmenty URI:
Na przykład weź pod uwagę następujący identyfikator URI:
http://stackoverflow.com/questions/some-number/how-can-i-do-this/others
Segment pozwala pobrać określony ciąg identyfikatora URI z segmentu, gdzie n jest numerem segmentu. Segmenty są ponumerowane od lewej do prawej. Na przykład następujący kod:
$this->uri->segment(n)
Służy do pobierania określonego segmentu z identyfikatora URI, gdzie n jest numerem segmentu.
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
Uzyskaj ostatni i przed ostatnim segmentem URI
Uzyskaj ostatni segment
echo end($this->uri->segment_array()); //it will print others
Zdobądź przed ostatnim segmentem
echo $this->uri->segment(count($this->uri->segment_array())-1); //it will print how-can-i-do-this
Więcej informacji: [ http://stackoverflow.com/questions/9221164/code-igniter-get-before-last-uri-segment][1]
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow