我的网址是http://example.come/search?s=code/100
我在我的应用程序中使用codeigniter。
echo $this->uri->segment(1); Result is 'search';
但uri segment
的{{1}}是什么?
答案 0 :(得分:1)
我认为您创建网址的方式不正确。查询字符串应该在结尾...即。 http://example.come/search/100?s=code
。那么以下应该有效:
echo $this->uri->segment(2);