diff options
author | Lance Vincent <lancevincent@gmail.com> | 2015-01-26 05:20:48 +0100 |
---|---|---|
committer | Lance Vincent <lancevincent@gmail.com> | 2015-01-26 05:20:48 +0100 |
commit | e13fea5f71c5a8ae4ace1c52483fb61b9f1b87c5 (patch) | |
tree | fe2ac763cb15f2b0ab555493085c8c7558eec3b6 /system/libraries | |
parent | a135a18fe99ccf4f27dabc6c4a045e42cd239cea (diff) |
Form Validation - Between method
Value must be within a given numeric range
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Form_validation.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index b640f1ec1..16766ca66 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -1438,6 +1438,27 @@ class CI_Form_validation { // -------------------------------------------------------------------- /** + * Between two numeric values + * + * @param int + * @param string + * @return bool + */ + public function between($str, $range) + { + if ( ! preg_match('/^\s?(\d+)\s?,\s?(\d+)\s?$/', $range)) + { + return FALSE; + } + + list($range_start, $range_end) = array_map('intval', explode(',', $range)); + + return is_numeric($str) ? ($str >= $range_start && $str <= $range_end) : FALSE; + } + + // -------------------------------------------------------------------- + + /** * Is a Natural number (0,1,2,3, etc.) * * @param string |