サーチ…


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