Download the PHP package hundredminds/php-validation without Composer
On this page you can find all versions of the php package hundredminds/php-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hundredminds/php-validation
More information about hundredminds/php-validation
Files in hundredminds/php-validation
Package php-validation
Short Description A PHP 5.3 Class for Easy Form Validation, forked from blackbelt/php-validation
License
Informations about the package php-validation
A PHP 5.3 Class for Easy Form Validation
This class follows Zend Framework naming conventions for easy drop-in as a substitute to Zend_Validation. If you opt out of using the bulky Zend_Form on your projects, you might choose to use this for quick and painless form validation.
A Quick Example
The example below shows how to throw validation exceptions with the custom exception. You can then retrieve the error messages from the calling method. It is not good practice to validate your data in your controller, this should be handled in your Model. This is just a quick example.
Available Validation Methods
- required($message = null) - The field value is required.
- email($message = null) - The field value must be a valid email address string.
- float($message = null) - The field value must be a float.
- integer($message = null) - The field value must be an integer.
- digits($message = null) - The field value must be a digit (integer with no upper bounds).
- min($limit, $include = TRUE, $message = null) - The field value must be greater than $limit (numeric). $include defines if the value can be equal to the limit.
- max($limit, $include = TRUE, $message = null) - The field value must be less than $limit (numeric). $include defines if the value can be equal to the limit.
- between($min, $max, $include = TRUE, $message = null) - The field value must be between $min and $max (numeric). $include defines if the value can be equal to $min and $max.
- minLength($length, $message = null) - The field value must be greater than or equal to $length characters.
- maxLength($length, $message = null) - The field value must be less than or equal to $length characters.
- length($length, $message = null) - The field must be $length characters long.
- matches($field, $label, $message = null) - One field matches another one (i.e. password matching)
- notMatches($field, $label, $message = null) - The field value must not match the value of $field.
- startsWith($sub, $message = null) - The field must start with $sub as a string.
- notStartsWith($sub, $message = null) - The field must not start with $sub as a string.
- endsWith($sub, $message = null) - THe field must end with $sub as a string.
- notEndsWith($sub, $message = null) - The field must not end with $sub as a string.
- ip($message = null) - The field value is a valid IP, determined using filter_var.
- url($message = null) - The field value is a valid URL, determined using filter_var.
- date($message = null) - The field value is a valid date, can be of any format accepted by DateTime()
- minDate($date, $format, $message = null) - The date must be greater than $date. $format must be of a format on the page http://php.net/manual/en/datetime.createfromformat.php
- maxDate($date, $format, $message = null) - The date must be less than $date. $format must be of a format on the page http://php.net/manual/en/datetime.createfromformat.php
- ccnum($message = null) - The field value must be a valid credit card number.
- oneOf($allowed, $message = null) - The field value must be one of the $allowed values. $allowed can be either an array or a comma-separated list of values. If comma separated, do not include spaces unless intended for matching.
- callback($callback, $message = '', $params = array()) - Define your own custom callback validation function. $callback must pass an is_callable() check. $params can be any value, or an array if multiple parameters must be passed.
Callback Examples
Callback functions can be passed as strings or closures.
// numeric example
$validadator
->callback('is_numeric', 'Field is not numeric.')
->validate('number_field');
// closure example
$validator
->callback(function($val) {
return $val < -1 || $val > 1;
}, 'Number must be less than -1 or greater than 1.')
->validate('number_field_2');
Validating Arrays and Array Indices
This validation class has been extended to allow for validation of arrays as well as nested indices of a multi-dimensional array.
Validating Specific Indices
To validate specific indices of an array, use dot notation, i.e.
Available Pre-Validation Filtering
You can apply pre-validation filters to your data (i.e. trim, strip_tags, htmlentities). These filters can also
be custom defined so long as they pass an is_callable()
check.
- filter($callback)
Filter Examples
Credits
- Modifications by Corey Ballou, Chris Gutierrez, and Robert Fruchtman.
- Forked from Tasos Bekos
which was based on the initial work of "Bretticus". - See http://brettic.us/2010/06/18/form-validation-class-using-php-5-3/ for the original.
License
Copyright (c) 2012 http://github.com/bekos, http://github.com/blackbe.lt
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.