Version::VERSION_MAJOR

integer VERSION_MAJOR

Validation\Validator\Uniqueness::validate

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

Version

Source on GitHub This class allows to get the installed version of the framework Constants integer VERSION_MAJOR integer VERSION_MEDIUM integer VERSION_MINOR integer VERSION_SPECIAL integer VERSION_SPECIAL_NUMBER Methods protected static _getVersion () Area where the version number is set. The format is as follows: ABBCCDE A - Major version B - Med version (two digits) C - Min version (two digits) D - Special release: 1 = Alpha, 2 = Beta, 3 = RC, 4 = Stable E - Special release version

Version::getId

public static getId () Returns the numeric active version echo Phalcon\Version::getId();

Version::get

public static get () Returns the active version (string) echo Phalcon\Version::get();

Validation\Validator\Url::validate

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

Validation\Validator\Url

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Checks if a value has a url format use Phalcon\Validation\Validator\Url as UrlValidator; $validator->add('url', new UrlValidator([ 'message' => ':field must be a url' ])); $validator->add(['url', 'homepage'], new UrlValidator([ 'message' => [ 'url' => 'url must be a url', 'homepage' => 'homepage must be a url' ] ])); Meth

Validation\Validator\Regex::validate

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

Validation\Validator\StringLength

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Validates that a string has the specified maximum and minimum constraints The test is passed if for a string’s length L, min<=L<=max, i.e. L must be at least min, and at most max. use Phalcon\Validation\Validator\StringLength as StringLength; $validation->add('name_last', new StringLength([ 'max' => 50, 'min' => 2, 'messageMaximum' => 'We don\'

Validation\Validator\Regex

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Allows validate if the value of a field matches a regular expression use Phalcon\Validation\Validator\Regex as RegexValidator; $validator->add('created_at', new RegexValidator([ 'pattern' => '/^[0-9]{4}[-\/](0[1-9]|1[12])[-\/](0[1-9]|[12][0-9]|3[01])$/', 'message' => 'The creation date is invalid' ])); $validator->add(['created_at', 'name'], new RegexV