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