yii\web\CookieCollection::offsetExists PHP Méthode

offsetExists() public méthode

This method is required by the SPL interface [[\ArrayAccess]]. It is implicitly called when you use something like isset($collection[$name]).
public offsetExists ( string $name ) : boolean
$name string the cookie name
Résultat boolean whether the named cookie exists
    public function offsetExists($name)
    {
        return $this->has($name);
    }