hasCookie() hasCookie(string $name) : boolean Checks whether a cookie exists. Parameters string $name Cookie name Returns boolean
getCookie() getCookie(string $name) : mixed Gets the value of a cookie. Parameters string $name Cookie name Returns mixed
setCookie() setCookie(string $name, string $data, int $expire, string $path, string $domain, boolean $secure, boolean $httpOnly) Sets the value of a cookie. Parameters string $name Cookie name string $data Value of the cookie int $expire string $path string $domain boolean $secure boolean $httpOnly
getRequestValue() getRequestValue(string $key) : mixed Gets a request parameter. null is returned if the key is not set. Parameters string $key Returns mixed