$config
$config : array
配置参数
Cookie管理类
$config : array
配置参数
$cookie : array
Cookie写入数据
$request : \think\Request
当前Request对象
saveCookie(string $name, string $value, int $expire, string $path, string $domain, bool $secure, bool $httponly, string $samesite) : void
保存Cookie
string | $name | cookie名称 |
string | $value | cookie值 |
int | $expire | cookie过期时间 |
string | $path | 有效的服务器路径 |
string | $domain | 有效域名/子域名 |
bool | $secure | 是否仅仅通过HTTPS |
bool | $httponly | 仅可通过HTTP访问 |
string | $samesite | 防止CSRF攻击和用户追踪 |