PHP code example of fyre / cookie

1. Go to this page and download the library: Download fyre/cookie library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

fyre / cookie example snippets


use Fyre\Http\Cookie;

$cookie = new Cookie($name, $value, $options);

$cookie->dispatch();

$domain = $cookie->getDomain();

$expires = $cookie->getExpires();

$name = $cookie->getName();

$path = $cookie->getPath();

$sameSite = $cookie->getSameSite();

$value = $cookie->getValue();

$expired = $cookie->isExpired();

$httpOnly = $cookie->isHttpOnly();

$secure = $cookie->isSecure();

$options = Cookie::getDefaults();

Cookie::setDefaults($options);