codeigniter
CodeIgniter URI-segment
Zoeken…
URI-segmenten:
Overweeg bijvoorbeeld de volgende URI:
http://stackoverflow.com/questions/some-number/how-can-i-do-this/others
Met Segment kunt u een specifieke URI-reeks van een segmentvorm ophalen, waarbij n een segmentnummer is. Segmenten zijn genummerd van links naar rechts. Bijvoorbeeld de volgende code:
$this->uri->segment(n)
Wordt gebruikt om een specifiek segment uit de URI op te halen, waarbij n het segmentnummer is.
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
Ontvang het laatste en voorlaatste URI-segment
Krijg laatste segment
echo end($this->uri->segment_array()); //it will print others
Ga voor het laatste segment
echo $this->uri->segment(count($this->uri->segment_array())-1); //it will print how-can-i-do-this
Meer info: [ http://stackoverflow.com/questions/9221164/code-igniter-get-before-last-uri-segment
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow