返回介绍

Cookie 辅助函数

发布于 2019-10-31 06:05:19 字数 3224 浏览 860 评论 0 收藏 0

Cookie 辅助函数文件包含了一些帮助你处理 Cookie 的函数。

  • 加载辅助函数
  • 可用函数

加载辅助函数

该辅助函数通过下面的代码加载:

$this->load->helper('cookie');

可用函数

该辅助函数有下列可用函数:

参数:
  • $name (mixed) -- Cookie name or associative array of all of the parameters available to this function
  • $value (string) -- Cookie value
  • $expire (int) -- Number of seconds until expiration
  • $domain (string) -- Cookie domain (usually: .yourdomain.com)
  • $path (string) -- Cookie path
  • $prefix (string) -- Cookie name prefix
  • $secure (bool) -- Whether to only send the cookie through HTTPS
  • $httponly (bool) -- Whether to hide the cookie from JavaScript
返回类型:

void

该辅助函数提供给你一种更友好的语法来设置浏览器 Cookie,参考 输入类 获取它的详细用法,另外,它是 CI_Input::set_cookie() 函数的别名。

参数:
  • $index (string) -- Cookie name
  • $xss_clean (bool) -- Whether to apply XSS filtering to the returned value
返回:

The cookie value or NULL if not found

返回类型:

mixed

该辅助函数提供给你一种更友好的语法来获取浏览器 Cookie,参考 输入类 获取它的详细用法,同时,这个函数 和 CI_Input::cookie() 函数非常类似,只是它会根据配置文件 application/config/config.php 中的 $config['cookie_prefix'] 参数 来作为 Cookie 的前缀。

参数:
  • $name (string) -- Cookie name
  • $domain (string) -- Cookie domain (usually: .yourdomain.com)
  • $path (string) -- Cookie path
  • $prefix (string) -- Cookie name prefix
返回类型:

void

删除一条 Cookie,只需要传入 Cookie 名即可,也可以设置路径或其他参数 来删除特定 Cookie。

delete_cookie('name');

这个函数和 set_cookie() 比较类似,只是它并不提供 Cookie 的值和 过期时间等参数。第一个参数也可以是个数组,包含多个要删除的 Cookie 。 另外,你也可以像下面这样删除特定条件的 Cookie 。

delete_cookie($name, $domain, $path, $prefix);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文