Fork from blackbelt/php-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., (*1)
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., (*2)
<?php class ExampleController extends Zend_Controller_Action { /** * Your controller action that handles validation errors, as you would * want these errors passed on to the view. * * @access public * @return void */ public function indexAction() { try { // validate the data $validData = $this->_validate($_POST); // validation passed because no exception was thrown // ... to something with the $validData ... } catch (Validator_Exception $e) { // retrieve the overall error message to display $message = $e->getMessage(); // retrieve all of the errors $errors = $e->getErrors(); // the below code is specific to ZF $this->_helper->FlashMessenger(array('error' => $message)); $this->_helper->layout->getView()->errors = $errors; } } /** * Your user-defined validation handling. The exception section is * very important and should always be used. * * @access private * @param array $post * @return mixed */ private function _validate(array $post = array()) { $validator = new Validator($post); $validator ->required('You must supply a name.') ->validate('name', 'Name'); $validator ->required('You must supply an email address.') ->email('You must supply a valid email address') ->validate('email', 'Email'); // check for errors if ($validator->hasErrors()) { throw new Validator_Exception( 'There were errors in your form.', $validator->getAllErrors() ); } return $validator->getValidData(); } }
Callback functions can be passed as strings or closures., (*3)
// 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');
This validation class has been extended to allow for validation of arrays as well as nested indices of a multi-dimensional array., (*4)
To validate specific indices of an array, use dot notation, i.e., (*5)
<?php // load the validator $validator = new Validator($_POST); // ensure $_POST['field']['nested'] exists $validator ->required('The nested field is required.') ->validate('field.nested'); // ensure we have the first two numeric indices of $_POST['links'][] $validator ->required('This field is required') ->validate('links.0'); $validator ->required('This field is required') ->validate('links.1');
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., (*6)
// standard php filter for valid user ids. $validator ->filter('intval') ->min(1) ->validate('user_id'); // custom filter $validator ->filter(function($val) { // bogus formatting of the field $val = rtrim($val, '/'); $val .= '_custom_formatted'; return $val; }) ->validate('field_to_be_formatted');
Copyright (c) 2012 http://github.com/bekos, http://github.com/blackbe.lt, (*7)
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:, (*8)
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*9)
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., (*10)