重定向在 codelgniter 中不起作用

发布于 2024-12-09 18:37:12 字数 551 浏览 0 评论 0原文

我正在使用 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));

}

I am using codelgniter and i want to pass the below 3 parameters to site_url().But this take only the method name not the parameters.... How can i pass these parameters. Please help me

   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));

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

苄①跕圉湢 2024-12-16 18:37:12

如果代码是复制粘贴的,单引号有错误

redirect(site_url('admin/admin/dateandprefix/').$date.'/'.$prefix.'/'.$island);

If the code is copy pasted, there is an error in the single quote

redirect(site_url('admin/admin/dateandprefix/').$date.'/'.$prefix.'/'.$island);
神回复 2024-12-16 18:37:12

你犯了一个错误。使用这样的网站网址。

redirect(site_url('admin/admin/dateandprefix/'.$date.'/'.$prefix.'/'.$island));

欲了解更多详情,您可以查看此链接
用户指南

希望有所帮助。

you are making a mistake . use site url like this .

redirect(site_url('admin/admin/dateandprefix/'.$date.'/'.$prefix.'/'.$island));

for more details you can view this link
user guide

Hope this help.

又怨 2024-12-16 18:37:12

试试这个:

redirect('admin/admin/dateandprefix/'.$date.'/'.$prefix.''.$island.'','refresh');

Try this :

redirect('admin/admin/dateandprefix/'.$date.'/'.$prefix.''.$island.'','refresh');
贱贱哒 2024-12-16 18:37:12

如果您使用的是 CI4
然后在基本使用和/公共之后使用
http://localhost/文件夹名称/public
然后就可以正常工作了

If you are using CI4
Then use in base use and/public after that
http://localhost/foldername/public
then it work fine

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文