codeigniter
CodeIgniter URI-segment
Sök…
URI-segment:
Tänk till exempel på följande URI:
http://stackoverflow.com/questions/some-number/how-can-i-do-this/others
Segment gör det möjligt att hämta en specifik URI-sträng för segmentformer där n är ett segmentnummer. Segmenten numreras från vänster till höger. Till exempel följande kod:
$this->uri->segment(n)
Används för att hämta ett specifikt segment från URI där n är segmentnumret.
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
Få sista och före sista URI-segmentet
Få sista segmentet
echo end($this->uri->segment_array()); //it will print others
Få före sista segmentet
echo $this->uri->segment(count($this->uri->segment_array())-1); //it will print how-can-i-do-this
Mer information: [ http://stackoverflow.com/questions/9221164/code-igniter-get-before-last-uri-segment????1]
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow