Top "Zend-validate" questions

Zend Framework provide the validate class to validate the forms elements.

regular expression for phone number in php

I am using zend form validation for a phone number. and I want, user should enter phone number in these …

php regex zend-framework string zend-validate
Zend form validation

I am using Zend Form to create dynamic form. I have Zend Form validation too. Trying to remove Validation dynamically, …

php zend-framework zend-form zend-validate
Zend Form Edit and Zend_Validate_Db_NoRecordExists

I am slowly building up my Zend skills by building some utility websites for my own use. I have been …

php zend-framework zend-db zend-validate
Validating YYYY-MM-DD formatted strings with Zend_Validate_Date in en_US locale

I'm validating a user-entered date string in YYYY-MM-DD format using Zend_Validate::is($value,'Date'). This call creates this hierarchy: …

php zend-framework zend-validate
Using "." for decimals in zend validator float

I have a form with a element called "price". I validate this element with the "float" validator. The thing is …

mysql zend-framework zend-form zend-validate zend-locale
How to remove a validator from a Form Element / Form Element ValidatorChain in Zend Framework 2?

I read this question on SO: "how to disable inArray validator forms in zend framework2" and was trying to find …

zend-framework2 validation zend-form-element zend-validate
Phone number validation using zend framwork

I am using below code to validate by phone number in my project, $phone = new Zend_Form_Element_Text('phone', …

php zend-framework zend-form zend-validate
How to create a datetime validator in a Zend Framework form?

By default a Zend Framework date validator uses the date format yyyy-MM-dd: $dateValidator = new Zend_Validate_Date(); But I want …

php zend-framework date zend-date zend-validate
Zend Validation Db_NoRecordExists and exclude option

I'm trying to use the "exclude" option for a Db_NoRecordExists validator, cause when I'm "editing" the element it always …

php zend-framework zend-form zend-validate