且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

单击每个链接或重新加载页面时,CodeIgniter检查会话变量是否已设置

更新时间:2023-11-30 21:02:04

您想要检查会话变量是否设置,然后使用此。

If you want to check whether the session variable is set or not, then use this.

if($this->session->userdata('session_variable')) {

      // Do your code here
}

同时,如果你想检查会话变量是否设置了特定的值,那么你可以使用这个。

Meanwhile, if you want to check whether the session variable is set with a particular value, then you can use this.

if($this->session->userdata('session_variable') == "VALUE") {

      // Do your code here
}