Код: Выделить всё
$phone_1 = new Zend_Form_Element_Text('phone_1');
$phone_1->addValidator(new Zend_Validate_Db_NoRecordExists(
array(
'field' => 'phone_1',
'table' => 'customer',
)))
->addValidator(new Zend_Validate_Db_NoRecordExists(
array(
'field' => 'phone_2',
'table' => 'customer',
)));
Подробнее здесь: https://stackoverflow.com/questions/164 ... date-twice