| [ Web Proxy ] |
| Viewing: https://docs.sonsofphp.com/components/cookie | [Back] [Original] |
composer require sonsofphp/cookieA Cookie is treated as a value object. This means that if two cookie objects have the same name and value, they will be considered equal. They are also considered to be immutable.
<?php
use SonsOfPHP\Component\Cookie\Cookie;
$cookie = new Cookie('name', 'value');
header('Set-Cookie: ' . $cookie->getHeaderValue());
// OR
// header('Set-Cookie: ' . (string) $cookie);
// Set various attributes
$cookie = $cookie
->withPath('/')
->withDomain('docs.sonsofphp.com')
;Last updated 1 year ago
| Web Proxy Viewer | New URL | Original Page |