Browse Source

Added ability to pass multiple parameters to Cookie::has.

Taylor Otwell 14 years ago
parent
commit
65dca24939
1 changed files with 11 additions and 4 deletions
  1. 11 4
      system/cookie.php

+ 11 - 4
system/cookie.php

@@ -83,14 +83,21 @@ class Cookie {
 	}
 
 	/**
-	 * Determine if a cookie exists.
+	 * Determine if a cookie or set of cookies exists.
 	 *
-	 * @param  string  $name
 	 * @return bool
 	 */
-	public static function has($name)
+	public static function has()
 	{
-		return ( ! is_null(static::get($name)));
+		foreach (func_get_args() as $key)
+		{
+			if (is_null(static::get($key)))
+			{
+				return false;
+			}
+		}
+
+		return true;
 	}
 
 	/**