ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
php设置samesite cookie,支持所有PHP版本。 PHP 7.3 的setcookie函数已经支持samesite属性,但对于7.3以下版本,可以用以下函数代替: ``` <?php $options = [ 'expires' => time()+18400, 'domain' => 'localhost', 'httponly' => false, 'samesite' => 'Lax', 'secure' => false, 'path' => '/' ]; function samesite_setcookie($name, $value, array $options) { $header = 'Set-Cookie:'; $header .= rawurlencode($name) . '=' . rawurlencode($value) . ';'; if (isset($options['expires'])) { $header .= 'expires=' . gmdate('D, d-M-Y H:i:s T', $options['expires']) . ';'; } if (isset($options['expires'])) { $header .= 'Max-Age=' . max(0, (int) ($options['expires'] - time())) . ';'; } if (!empty($options['path'])) { $header .= 'path=' . $options['path']. ';'; } if (!empty($options['domain'])) { $header .= 'domain=' . rawurlencode($options['domain']) . ';'; } if (!empty($options['secure'])) { $header .= 'Secure;'; } if (!empty($options['httponly'])) { $header .= 'HttpOnly;'; } if (!empty($options['samesite'])) { $header .= 'SameSite=' . rawurlencode($options['samesite']); } header($header, false); $_COOKIE[$name] = $value; } samesite_setcookie('hahaha', 'tttttt', $options); ```