Class Phalcon\Validation\Validator\Numericality

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Check for a valid numeric value

  1. <?php
  2. use Phalcon\Validation\Validator\Numericality;
  3. $validator->add(
  4. "price",
  5. new Numericality(
  6. [
  7. "message" => ":field is not numeric",
  8. ]
  9. )
  10. );
  11. $validator->add(
  12. [
  13. "price",
  14. "amount",
  15. ],
  16. new Numericality(
  17. [
  18. "message" => [
  19. "price" => "price is not numeric",
  20. "amount" => "amount is not numeric",
  21. ]
  22. ]
  23. )
  24. );

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