用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2408|回复: 1
收起左侧

[HELP] URL

[复制链接]
发表于 2011-8-26 18:15:37 | 显示全部楼层 |阅读模式
我已经看了http://codeigniter.org.cn/forums/thread-692-1-1.html这里的讲解,但是我还还是不知道该怎么接收
http://192.168.1.49:8086/index.php/test/first/index/1/2/list?parm=hello&page=52这里面最后的值
请明示
public function index($v1,$v2,$v3='test')
{
  parse_str($_SERVER['QUERY_STRING'], $_GET);
  echo $v3;
  }
发表于 2011-8-26 22:38:19 | 显示全部楼层
$this->input->get('parm');
$this->input->get('page');

本版积分规则