ZF 1.11.2
I've tried most of the syntaxes. They didn't click.
$validators = array('product_name' => array('alnum'));
//...
$input = new Zend_Filter_Input($filters, $validators, $_POST);
How in the world do you set a custom error message for alnum
with the syntax above? Using 'messages' => array('Not alnum!!')
? Yeah, well... How? I must've tried 100 nested arrays.
If you are simply trying to change the validation messages for a form element, I have always done it like this (inside a class that extends Zend_Form):
Are you saying that this didn't work? Or are you using your validator in a more general context, in which case @Phil Brown's (awesome!) answer will do the job.