gpt4 book ai didi

codeigniter - 通过 codeigniter 中的重定向功能发布数据

转载 作者:行者123 更新时间:2023-12-05 08:21:14 25 4
gpt4 key购买 nike

在 codeiginter 中是否有使用 redirect() 函数发布数据数组或单个变量字符串数据的方法或技巧?

最佳答案

当使用 redirect 时,您通过这个过程从一个或另一个 Controller 转到所有发布数据,除非您将它们存储在 session 中,这就是我的做法

$data = array('firstname'=>'fname','lastname'=>'lastname');
// i store data to flashdata
$this->session->set_flashdata('lolwut',$data);
// after storing i redirect it to the controller
redirect('controller/method')

因此在重定向的 Controller 上,您可以通过 $this->session->flashdata('lolwut') 访问它请注意,我使用的是 flashdata 而不是 userdataflashdata 会在下一个进程中自行销毁。

在此处阅读更多闪存数据 SESSION CLASS

关于codeigniter - 通过 codeigniter 中的重定向功能发布数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15241124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com