Zend_Form int validation..?

zend-form, zend-framework

Solution

You can use the Digits validator class

addValidator('Digits')

Problem

In the Zend Framework is there a standard validator for an input that I want to be numbers only? Its the age field in my registration form so I obviously only want numbers. Something like addValidator('NumbersOnly'); Thanks

Original source