cookie.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php namespace System;
  2. class Cookie {
  3. /**
  4. * Determine if a cookie exists.
  5. *
  6. * @param string $name
  7. * @return bool
  8. */
  9. public static function has($name)
  10. {
  11. return ! is_null(static::get($name));
  12. }
  13. /**
  14. * Get the value of a cookie.
  15. *
  16. * @param string $name
  17. * @param mixed $default
  18. * @return string
  19. */
  20. public static function get($name, $default = null)
  21. {
  22. return Arr::get($_COOKIE, $name, $default);
  23. }
  24. /**
  25. * Set a "permanent" cookie. The cookie will last 5 years.
  26. *
  27. * @param string $name
  28. * @param string $value
  29. * @param string $path
  30. * @param string $domain
  31. * @param bool $secure
  32. * @return bool
  33. */
  34. public static function forever($name, $value, $path = '/', $domain = null, $secure = false)
  35. {
  36. return static::put($name, $value, 2628000, $path, $domain, $secure);
  37. }
  38. /**
  39. * Set the value of a cookie. If a negative number of minutes is
  40. * specified, the cookie will be deleted.
  41. *
  42. * @param string $name
  43. * @param string $value
  44. * @param int $minutes
  45. * @param string $path
  46. * @param string $domain
  47. * @param bool $secure
  48. * @return bool
  49. */
  50. public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false)
  51. {
  52. if ($minutes < 0)
  53. {
  54. unset($_COOKIE[$name]);
  55. }
  56. return setcookie($name, $value, ($minutes != 0) ? time() + ($minutes * 60) : 0, $path, $domain, $secure);
  57. }
  58. /**
  59. * Delete a cookie.
  60. *
  61. * @param string $name
  62. * @return bool
  63. */
  64. public static function forget($name)
  65. {
  66. return static::put($key, null, -60);
  67. }
  68. }