Browse Source

validate ip

Han Lin Yap 13 years ago
parent
commit
5974a58b3f
1 changed files with 12 additions and 0 deletions
  1. 12 0
      laravel/validator.php

+ 12 - 0
laravel/validator.php

@@ -426,6 +426,18 @@ class Validator {
 
 		return $query->count() == 0;
 	}
+	
+	/**
+	 * Validate that an attribute is a valid IP.
+	 *
+	 * @param  string  $attribute
+	 * @param  mixed   $value
+	 * @return bool
+	 */
+	protected function validate_ip($attribute, $value)
+	{
+		return filter_var($value, FILTER_VALIDATE_IP) !== false;
+	}
 
 	/**
 	 * Validate that an attribute is a valid e-mail address.