수색…


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