extends abstract class Phalcon\Validation\Validator
implements Phalcon\Validation\ValidatorInterface
Validates that a value is between a range of two values
use Phalcon\Validation\Validator\Between; $validator->add('name', new Between(array( 'minimum' => 0, 'maximum' => 100, 'message' => 'The price must be between 0 and 100' )));
Executes the validation
Phalcon\Validation\Validator constructor
Checks if an option is defined
Returns an option in the validator’s options Returns null if the option hasn’t been set
Sets an option in the validator
© 2011–2016 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/2.0.0/api/Phalcon_Validation_Validator_Between.html