CICookie辅助函数
$this->load->helper("cookie");
2. 该辅助函数下有以下可用函数
2.1 set_cookie($name[, $value = ""[, $expire = ""[, $domain = ""[, $path = "/"[, $prefix = ""[, $secure = NULL[, $httponly = NULL]]]]]]])
- $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() 函数的别名
2.2 get_cookie($index[, $xss_clean = NULL])
- $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 的前缀。
2.3 delete_cookie($name[, $domain = ""[, $path = "/"[, $prefix = ""]]])
- $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);
以上是 CICookie辅助函数 的全部内容, 来源链接: utcz.com/z/513747.html