我的 Codeigniter 版本是“3.0.6”。我的 php 版本是 -7.2.17。这不是在本地给我带来问题,而是在网上给我。我不确定我在本地有什么变化,但没有现场直播。
HomeController.php 中的代码(设置会话)
public function test(){
$this->session->set_userdata(['test' => "Testing"]);
//Below Line Does Print 'Testing' But it does this only on homecontroller not on dashboard controller.
echo $this->session->userdata('test');
}
Dashboard.php 中的代码(使用 Session 的值)
public function testdata(){
$this->load->library('session');
echo $this->session->userdata('test');
//Nothing Echoed by Above Line and it seems value is empty
//Above Line Does Print 'Testing' in Homecontroller not print on dashboard controller.
}
我在堆栈上尝试了很多类似的问题并尝试了他们的解决方案,但没有解决方案有效。
阿波罗的战车
慕妹3146593