Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
INVALID = 'stringLengthInvalid'
Details TOO_SHORT = 'stringLengthTooShort'
Details TOO_LONG = 'stringLengthTooLong'
Detailsstring|null $_encoding = ''Encoding to use
Detailsinteger|null $_max = ''Maximum length
If null, there is no maximum length
Detailsarray $_messageTemplates = 'array'
Detailsarray $_messageVariables = 'array'
Detailsinteger $_min = ''Minimum length
Details__construct(
integer|array|Zend_Config $options
=
array
)
:
voidSets validator options
DetailsgetEncoding(
)
:
stringReturns the actual encoding
DetailsgetMax(
)
:
integer|nullReturns the max option
DetailsgetMin(
)
:
integerReturns the min option
DetailsisValid(
string $value
)
:
booleanDefined by Zend_Validate_Interface
Returns true if and only if the string length of $value is at least the min option and no greater than the max option (when the max option is not null).
DetailssetEncoding(
string $encoding
=
null
)
:
Zend_Validate_StringLengthSets a new encoding to use
DetailssetMax(
integer|null $max
)
:
Zend_Validate_StringLengthSets the max option
DetailssetMin(
integer $min
)
:
Zend_Validate_StringLengthSets the min option
Details