CodeIgniter中使用cookie的三种方式详解

前端之家收集整理的这篇文章主要介绍了CodeIgniter中使用cookie的三种方式详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

cookie在PHP程序设计中应用十分广泛,本文所述CodeIgniter中使用cookie主要有以下三种方式,读者可以根据自身项目需求酌情采用。

第一种方式:采用PHP原生态的方法设置的cookie的值

PHP;"> setcookie("user_id",$user_info['user_id'],86500); setcookie("username",$user_info['username'],86500); setcookie("password",$user_info['password'],86500); //echo$_COOKIE['username'];

第二种方式:通过CI框架的input类库设置cookie的值

input->set_cookie("username",60); $this->input->set_cookie("password",60); $this->input->set_cookie("user_id",60); //echo$this->input->cookie("password");//适用于控制器 //echo$this->input->cookie("username");//适用于控制器 //echo$_COOKIE['username'];//在模型类中可以通过这种方式获取cookie值 //echo$_COOKIE['password'];//在模型类中可以通过这种方式获取cookie值

第三种方式:通过CI框架的cookie_helper.PHP辅助函数库设置cookie的值

PHP;"> set_cookie("username",60); set_cookie("password",60); set_cookie("user_id",60); //echoget_cookie("username");
原文链接:https://www.f2er.com/php/24145.html

猜你在找的PHP相关文章