You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace think\worker;
|
|
|
|
use think\Cookie as BaseCookie;
|
|
use Workerman\Protocols\Http as WorkerHttp;
|
|
|
|
/**
|
|
* Workerman Cookie类
|
|
*/
|
|
class Cookie extends BaseCookie
|
|
{
|
|
/**
|
|
* 保存Cookie
|
|
* @access public
|
|
* @param string $name cookie名称
|
|
* @param string $value cookie值
|
|
* @param int $expire cookie过期时间
|
|
* @param string $path 有效的服务器路径
|
|
* @param string $domain 有效域名/子域名
|
|
* @param bool $secure 是否仅仅通过HTTPS
|
|
* @param bool $httponly 仅可通过HTTP访问
|
|
* @param string $samesite 防止CSRF攻击和用户追踪
|
|
* @return void
|
|
*/
|
|
protected function saveCookie(string $name, string $value, int $expire, string $path, string $domain, bool $secure, bool $httponly, string $samesite): void
|
|
{
|
|
WorkerHttp::setCookie($name, $value, $expire, $path, $domain, $secure, $httponly);
|
|
}
|
|
|
|
}
|
|
|