当前路径:vendor/topthink/framework/src/think/Cookie.php <?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006~2019 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: liu21st <liu21st@gmail.com> // +---------------------------------------------------------------------- declare (strict_types = 1); namespace think; use DateTimeInterface; /** * Cookie管理类 * @package think */ class Cookie { /** * 配置参数 * @var array */ protected $config = [ // cookie 保存时间 'expire' => 0, // cookie 保存路径 'path' => '/', // cookie 有效域名 'domain' => '', // cookie 启用安全传输 'secure' => false, // httponly设置 'httponly' => false, // samesite 设置,支持 'strict' 'lax' 'samesite' => '', ]; /** * Cookie写入数据 * @var array */ protected $cookie = []; /** * 当前Request对象 * @var Request */ protected $request; /** * 构造方法 * @access public */ public function __construct(Request $request, array $config = []) { $this->request = $request; $this->config = array_merge($this->config, array_change_key_case($config)); } public static function __make(Request $request, Config $config) { return new static($request, $config->get('cookie')); } /** * 获取cookie * @access public * @param mixed $name 数据名称 * @param string $default 默认值 * @return mixed */ public function get(string $name = '', $default = null) { return $this->request->cookie($name, $default); } /** * 是否存在Cookie参数 * @access public * @param string $name 变量名 * @return bool */ public function has(string $name): bool { return $this->request->has($name, 'cookie'); } /** * Cookie 设置 * * @access public * @param string $name cookie名称 * @param string $value cookie值 * @param mixed $option 可选参数 * @return void */ public function set(string $name, string $value, $option = null): void { // 参数设置(会覆盖黙认设置) if (!is_null($option)) { if (is_numeric($option) || $option instanceof DateTimeInterface) { $option = ['expire' => $option]; } $config = array_merge($this->config, array_change_key_case($option)); } else { $config = $this->config; } if ($config['expire'] instanceof DateTimeInterface) { $expire = $config['expire']->getTimestamp(); } else { $expire = !empty($config['expire']) ? time() + intval($config['expire']) : 0; } $this->setCookie($name, $value, $expire, $config); } /** * Cookie 保存 * * @access public * @param string $name cookie名称 * @param string $value cookie值 * @param int $expire 有效期 * @param array $option 可选参数 * @return void */ protected function setCookie(string $name, string $value, int $expire, array $option = []): void { $this->cookie[$name] = [$value, $expire, $option]; } /** * 永久保存Cookie数据 * @access public * @param string $name cookie名称 * @param string $value cookie值 * @param mixed $option 可选参数 可能会是 null|integer|string * @return void */ public function forever(string $name, string $value = '', $option = null): void { if (is_null($option) || is_numeric($option)) { $option = []; } $option['expire'] = 315360000; $this->set($name, $value, $option); } /** * Cookie删除 * @access public * @param string $name cookie名称 * @return void */ public function delete(string $name): void { $this->setCookie($name, '', time() - 3600, $this->config); } /** * 获取cookie保存数据 * @access public * @return array */ public function getCookie(): array { return $this->cookie; } /** * 保存Cookie * @access public * @return void */ public function save(): void { foreach ($this->cookie as $name => $val) { [$value, $expire, $option] = $val; $this->saveCookie( $name, $value, $expire, $option['path'], $option['domain'], $option['secure'] ? true : false, $option['httponly'] ? true : false, $option['samesite'] ); } } /** * 保存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 { if (version_compare(PHP_VERSION, '7.3.0', '>=')) { setcookie($name, $value, [ 'expires' => $expire, 'path' => $path, 'domain' => $domain, 'secure' => $secure, 'httponly' => $httponly, 'samesite' => $samesite, ]); } else { setcookie($name, $value, $expire, $path, $domain, $secure, $httponly); } } }
相关源码
- 可旋转的彩色立方体C#源代码2021-10-29
- 在线考试系统2021-10-15
- EduSoho开源网校系统源码2019-06-27
- 仿拼多多小程序商城源码2019-06-06
- PHP5网站运行监测系统源码2017-04-14
关于我们 | 顾问团队 | 发展历程 | 联系我们 | 源码上传
联系电话(Tel):4008-010-151(免长途)
地址:北京市海淀区大恒科技大厦五层 邮编:100080
Floor 5th,Daheng Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2022. 京ICP备09089570号 | 京公网安备11010702000869号
联系电话(Tel):4008-010-151(免长途)
地址:北京市海淀区大恒科技大厦五层 邮编:100080
Floor 5th,Daheng Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2022. 京ICP备09089570号 | 京公网安备11010702000869号