vote up 0 vote down star

Hi,

how to validate letters and whitespaces using Zend Framework ?

flag

2 Answers

vote up 2 vote down

The Zend Framework does have a Zend_Validate_Alpha (as well as an alphanumeric version).

Normally it doesn't allow white space, but if you pass a true into the constructor of the Zend_Validate_Alpha class it will allow whitespace. Same with Zend_Validate_Alnum.

For example:

$validator = new Zend_Validate_Alpha(true); //will allow whitespace and non number letters
link|flag
vote up 0 vote down

i think Zend_Validate_Regex is best for this situation

link|flag
He'll want to pass in a '/[\w\s]+/i' as his regex in this case. – dcousineau Dec 4 '08 at 16:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.