codeigniter
Segmento URI CodeIgniter
Ricerca…
Segmenti URI:
Ad esempio, considera il seguente URI:
http://stackoverflow.com/questions/some-number/how-can-i-do-this/others
Segmento consente di recuperare una stringa URI di un segmento specifico in cui n è un numero di segmento. I segmenti sono numerati da sinistra a destra. Ad esempio, il seguente codice:
$this->uri->segment(n)
Viene utilizzato per recuperare un segmento specifico dall'URI dove n è il numero del segmento.
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
Ottieni l'ultimo e prima segmento dell'URI
Ottieni l'ultimo segmento
echo end($this->uri->segment_array()); //it will print others
Ottenere prima dell'ultimo segmento
echo $this->uri->segment(count($this->uri->segment_array())-1); //it will print how-can-i-do-this
Maggiori informazioni: [ http://stackoverflow.com/questions/9221164/code-igniter-get-before-last-uri-segment][1]
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow