Http\Response\CookiesInterface::delete

abstract public delete (mixed $name) ...

Http\Response\CookiesInterface

Source on GitHub Methods abstract public useEncryption (mixed $useEncryption) ... abstract public isUsingEncryption () ... abstract public set (mixed $name, [mixed $value], [mixed $expire], [mixed $path], [mixed $secure], [mixed $domain], [mixed $httpOnly]) ... abstract public get (mixed $name) ... abstract public has (mixed $name) ... abstract public delete (mixed $name) ... abstract public send () ... abstract public reset () ...

Http\Response\Cookies::useEncryption

public useEncryption (mixed $useEncryption) Set if cookies in the bag must be automatically encrypted/decrypted

Http\Response\Cookies::setDI

public setDI (Phalcon\DiInterface $dependencyInjector) Sets the dependency injector

Http\Response\Cookies::set

public set (mixed $name, [mixed $value], [mixed $expire], [mixed $path], [mixed $secure], [mixed $domain], [mixed $httpOnly]) Sets a cookie to be sent at the end of the request This method overrides any cookie set before with the same name

Http\Response\Cookies::send

public send () Sends the cookies to the client Cookies aren’t sent if headers are sent in the current request

Http\Response\Cookies::reset

public reset () Reset set cookies

Http\Response\Cookies::isUsingEncryption

public isUsingEncryption () Returns if the bag is automatically encrypting/decrypting cookies

Http\Response\Cookies::has

public has (mixed $name) Check if a cookie is defined in the bag or exists in the _COOKIE superglobal

Http\Response\Cookies::getDI

public getDI () Returns the internal dependency injector