Here is an example of setting up the validators as explained in the Manual http://zendframework.com/manual/en/zend.filter.input.html
$validators = array('account' => 'Alpha');
This checks that the input field is on Alphabets.
The question is, how do i find out the other options that can be used for Validating apart from "Alpha"
Where can I find the other Validation constants?