extends abstract class Phalcon\Validation\Validator
implements Phalcon\Validation\ValidatorInterface
Check if a value is not included into a list of values
use Phalcon\Validation\Validator\ExclusionIn; $validator->add( "status", new ExclusionIn( [ "message" => "The status must not be A or B", "domain" => [ "A", "B", ], ] ) ); $validator->add( [ "status", "type", ], new ExclusionIn( [ "message" => [ "status" => "The status must not be A or B", "type" => "The type must not be 1 or "' ], "domain" => [ "status" => [ "A", "B", ], "type" => [1, 2], ], ] ) );
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_ExclusionIn.html