Validation\Validator\Digit

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Check for numeric character(s)

1
2
3
4
5
6
7
8
9
10
11
12
use Phalcon\Validation\Validator\Digit as DigitValidator;
 
 $validator->add('height', new DigitValidator([
     'message' => ':field must be numeric'
 ]));
 
 $validator->add(['height', 'width'], new DigitValidator([
     'message' => [
         'height' => 'height must be numeric',
         'width' => 'width must be numeric'
     ]
 ]));

Methods

public validate (Phalcon\Validation $validation, mixed $field)

Executes the validation

public __construct ([array $options]) inherited from Phalcon\Validation\Validator

Phalcon\Validation\Validator constructor

public isSetOption (mixed $key) inherited from Phalcon\Validation\Validator

Checks if an option has been defined

public hasOption (mixed $key) inherited from Phalcon\Validation\Validator

Checks if an option is defined

public getOption (mixed $key, [mixed $defaultValue]) inherited from Phalcon\Validation\Validator

Returns an option in the validator’s options Returns null if the option hasn’t set

public setOption (mixed $key, mixed $value) inherited from Phalcon\Validation\Validator

Sets an option in the validator

doc_Phalcon
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.