Often while making websites, we need to validate certain things before processing data further. CakePHP provides validation package, to build validators that can validate data with ease.
Validation Methods
CakePHP provides various validation methods in the Validation Class. Some of the most popular of them are listed below.
The name of the field from which the rule will be added.The alias for a single rule or multiple rules array.The rule to add
Returns
$this
Description
Adds a new rule to a field’s rule set. If second argument is an array, then rules list for the field will be replaced with second argument and third argument will be ignored.
The name of the field.Indicates when the field is allowed to be empty. Valid values are true (always), ‘create’, ‘update’. If a callable is passed, then the field will be left empty only when the callback returns true.The message to show if the field is not.
The field you want to apply the rule to.The error message when the rule fails.Either ‘create’ or ‘update’ or a callable that returns true when the validation rule should be applied.
The field you want to apply the rule to.The type of cards you want to allow. Defaults to ‘all’. You can also supply an array of accepted card types, for example, [‘mastercard’, ‘visa’, ‘amex’].The error message when the rule fails.Either ‘create’ or ‘update’ or a callable that returns true, when the validation rule should be applied.
The field you want to apply the rule to.Whether or not to check the MX records.The error message when the rule fails.Either ‘create’ or ‘update’ or a callable that returns true, when the validation rule should be applied.
The field you want to apply the rule to.The maximum length allowed.The error message when the rule fails.Either ‘create’ or ‘update’ or a callable that returns true when the validation rule should be applied.
The field you want to apply the rule to.The maximum length allowed.The error message when the rule fails.Either ‘create’ or ‘update’ or a callable, that returns true when the validation rule should be applied.
The field you want to apply the rule to.The error message when the rule fails.Either ‘create’ or ‘update’ or a callable that returns true when the validation rule should be applied.
Leave a Reply