我正在使用codelgniter,我想把下面的3个参数传递给site_url()。但是这只需要方法名而不是参数....我如何传递这些参数。请帮助我
function report_del() {
$island = $this->tables($this->input->post('island'));
$prefix = $this->tables($this->input->post('prefix'));
$date = $this->tables($this->input->post('date'));
redirect(site_url('admin/admin/dateandprefix/').$date.'/'.$prefix.'/'.$island);
//$segments = array('admin/admin/dateandprefix/',$date,$prefix,$island);
//redirect(site_url($segments));
}
4条答案
按热度按时间oipij1gg1#
如果代码是复制粘贴的,则单引号中有错误
kkih6yb82#
你正在犯一个错误。使用网站网址像这样。
欲知更多详情,你可以查看此链接
user guide
希望这能有所帮助。
xzabzqsa3#
试试这个:
nxagd54h4#
如果您使用的是CI 4,则在基本用法中使用,然后使用/public
http://本地主机/文件夹名称/public,则它可以正常工作