Documentation

Table Of Contents

Previous topic

< Class Phalcon\Validation\Validator\Regex

Next topic

Class Phalcon\Validation\Validator\Uniqueness >

This Page

Class Phalcon\Validation\Validator\StringLength

extends class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

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.

<?php

use Phalcon\Validation\Validator\StringLength as StringLength;

$validation->add('name_last', new StringLength(array(
      'max' => 50,
      'min' => 2,
      'messageMaximum' => 'We don\'t like really long names',
      'messageMinimum' => 'We want more than just their initials'
)));

Methods

public boolean validate (unknown $validation, unknown $field)

Executes the validation

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

Phalcon\Validation\Validator constructor

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

Checks if an option is defined

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

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

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

Sets an option in the validator

Follow along: