Gpf_Http::setCookieValue PHP Method

setCookieValue() public method

public setCookieValue ( $name, $value = null, $expire = null, $path = null, $domain = null, $secure = null, $httpOnly = null )
        public function setCookieValue($name, $value = null, $expire = null, $path = null, $domain = null, $secure = null, $httpOnly = null)
        {
            setcookie($name, $value, $expire, $path, $domain, $secure, $httpOnly);
        }