Si, Si uso Zend2... pero tampoco funciona. Cuando le doy a validar el formulario y hago la traza sigue enviandome todos los valores del formulario pero no pepito.
Código PHP:
Ver original$option='pepito';
$element = new Element\Text('email');
$element->setLabel('Email')
->setRequired(true)
->addValidator('emailAddress')
->addValidator('Callback', true, array( 'callback' => array(new CustomerLogic
(), 'CheckEmailSpecial'), 'callbackOptions' => $option,
'callbackValue' => 'There is other customer with this email',
'callbackInvalid' => 'There is a problem in the system')));
$this->addElement($element);