Пример #1
0
 /**
  * Defines a cookie to be sent along with the rest of the HTTP headers.
  *
  * @link http://www.php.net/manual/en/function.setcookie.php
  *
  * @param  string  $name     The name of the cookie.
  * @param  string  $value    (optional) The value of the cookie.
  * @param  integer $expire   (optional) The time the cookie expires. This is a Unix timestamp
  * @param  string  $path     (optional) The path on the server in which the cookie will be available on.
  * @param  string  $domain   (optional) The domain that the cookie is available to.
  * @param  boolean $secure   (optional) Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client.
  * @param  boolean $httponly (optional) When TRUE the cookie will be made accessible only through the HTTP protocol.
  * @return boolean
  */
 public static final function setcookie($name, $value, $expire = 0, $path = null, $domain = null, $secure = false, $httponly = false)
 {
     $value = rawurlencode($value);
     return Cookie::setrawcookie($name, $value, $expire, $path, $domain, $secure, $httponly);
 }