codeigniter
कोडनिगर यूआरआई सेगमेंट
खोज…
यूआरआई सेगमेंट:
उदाहरण के लिए, कृपया निम्नलिखित URI पर विचार करें:
http://stackoverflow.com/questions/some-number/how-can-i-do-this/others
खंड एक विशिष्ट खंड प्रपत्र URI स्ट्रिंग को पुनः प्राप्त करने की अनुमति देता है जहां n एक खंड संख्या है। खंडों को बाएं से दाएं तक गिना जाता है। उदाहरण के लिए, निम्न कोड:
$this->uri->segment(n)
यूआरआई से एक विशिष्ट खंड को पुनः प्राप्त करने के लिए उपयोग किया जाता है जहां 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
अंतिम और अंतिम यूआरआई खंड से पहले प्राप्त करें
अंतिम खंड प्राप्त करें
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-seactenders [1 ]
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow