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

[HELP] 关于remap方法的参数?

[复制链接]
发表于 2009-10-16 16:35:03 | 显示全部楼层 |阅读模式
function _remap($method)
{
  if($method=='show')
  {
   parse_str($_SERVER['QUERY_STRING'], $_GET);
   if($this->input->get('keyword'))
   {
    $this->show($this->input->get('keyword'));
   }
  }
  else
  {
   $this->$method($params);
  }
}
怎样用参数传递给非show的方法?
发表于 2009-10-16 17:44:40 | 显示全部楼层
call_user_func_array(array(&$this, $method), array_slice($this->uri->rsegments, 2));

本版积分规则