Home  >  Article  >  PHP Framework  >  Can swoole use cookies?

Can swoole use cookies?

(*-*)浩
(*-*)浩Original
2019-12-12 14:25:332460browse

Can swoole use cookies?

Http\Response->cookie

Set the cookie information of the HTTP response. This method parameter is exactly the same as PHP's setcookie. (Recommended learning: swoole video tutorial)

function Http\Response->cookie(string $key, string $value = '', int $expire = 0 , string $path = '/', string $domain  = '', bool $secure = false , bool $httponly = false, string $samesite = '');

Cookie setting must be before the end method

$samesite parameter is supported starting from v4.4.6 version

Notes

The bottom layer will automatically urlencode the $value. You can use rawCookie to turn off the encoding of $value.

The bottom layer allows setting multiple COOKIES with the same $key.

The above is the detailed content of Can swoole use cookies?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn