CodeIgniter中使用cookie的三种方式详解_PHP
程序员文章站
2024-02-10 10:25:46
...
CI框架
cookie在php程序设计中应用十分广泛,本文所述CodeIgniter中使用cookie主要有以下三种方式,读者可以根据自身项目需求酌情采用。
第一种方式:采用php原生态的方法设置的cookie的值
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的值
$this->input->set_cookie("username",$user_info['username'],60); $this->input->set_cookie("password",$user_info['password'],60); $this->input->set_cookie("user_id",$user_info['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的值
set_cookie("username",$user_info['username'],60); set_cookie("password",$user_info['password'],60); set_cookie("user_id",$user_info['user_id'],60); //echoget_cookie("username");
上一篇: PHP内核两大流程之请求处理_PHP教程
推荐阅读
-
CodeIgniter中使用cookie的三种方式详解_PHP
-
在PHP中设置、使用、删除Cookie的解决方法
-
在PHP中设置、使用、删除Cookie的解决方法
-
php中const与define的使用区别 详解_PHP教程
-
LotusPhp笔记之:Cookie组件的使用详解_PHP
-
CodeIgniter中使用cookie的三种方式详解_php实例
-
PHP7扩展开发之基于函数方式使用lib库的方法详解
-
在PHP中设置、使用、删除Cookie的解决方法_PHP
-
为什么小弟我的COOKIE这样无法使用?还有PHP一定要以这种方式编写的吗
-
register_globals PHP中register_globals参数为OFF和ON的区别(register_globals 使用详解)