|
Class Phalcon\Validation\Validator\Alnum¶extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Check for alphanumeric character(s) <?php
use Phalcon\Validation\Validator\Alnum as AlnumValidator;
$validator->add(
"username",
new AlnumValidator(
[
"message" => ":field must contain only alphanumeric characters",
]
)
);
$validator->add(
[
"username",
"name",
],
new AlnumValidator(
[
"message" => [
"username" => "username must contain only alphanumeric characters",
"name" => "name must contain only alphanumeric characters",
],
]
)
);
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 |