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.

array
$_messageTemplates= 'array(
self::INVALID => "Invalid type given. String, integer or float expected"'
array(
self::INVALID => "Invalid type given. String, integer or float expected"
Details
array
$_messageVariables= 'array(
'pattern' => '_pattern'
)'
array(
'pattern' => '_pattern'
)
Details
__construct(
string|\Zend_Config $pattern
)
:
void
Sets validator options
Name | Type | Description |
---|---|---|
$pattern | string|\Zend_Config |
Exception | Description |
---|---|
\Zend_Validate_Exception | On missing 'pattern' parameter |

isValid(
string $value
)
:
boolean
Defined by Zend_Validate_Interface
Returns true if and only if $value matches against the pattern option
Name | Type | Description |
---|---|---|
$value | string |
Type | Description |
---|---|
boolean |

setPattern(
string $pattern
)
:
\Zend_Validate_Regex
Sets the pattern option
Name | Type | Description |
---|---|---|
$pattern | string |
Type | Description |
---|---|
\Zend_Validate_Regex | Provides a fluent interface |
Exception | Description |
---|---|
\Zend_Validate_Exception | if there is a fatal error in pattern matching |