I want to be able to add multiple PregReplace filters on a single Zend Form element. I can add one PregReplace filter using the code below:

$word = new Zend_Form_Element_Text('word');
$word->addFilter('PregReplace', array(
        'match' => '/bob/', 
        'replace' => 'john'
    ));
$this->addElement($word);

I've tried

$word = new Zend_Form_Element_Text('word');
$word->addFilter('PregReplace', array(
        'match' => '/bob/', 
        'replace' => 'john'
    ));
$word->addFilter('PregReplace', array(
        'match' => '/sam/', 
        'replace' => 'dave'
    ));
$this->addElement($word);    

but this just meant only the second filter worked.

How do I add multiple PregReplace filters?

link|improve this question
addFilter() uses the classname as an internal registry key, so apparently you can't have multiple filters of the same class. Kind of surprising that it doesn't allow an option to specify the key. Maybe worth filing as an issue. – David Weinraub Jul 16 '11 at 1:05
feedback

3 Answers

The problem you're facing is that the second filter will override the first one in the filters stack ($this->_filters) defined in Zend_Form_Element.

As David mentioned in the question comments, the filters stack use filter names as index ($this->_filters[$name] = $filter;) this is the reason why the second filter override the first one.

In order to resolve this problem, you can use a custom filter as follows:

$element->addFilter('callback', function($v) { return preg_replace(array('/bob/', '/sam/'),array('john', 'dave'), $v); });

This is done using an inline function(), in case you're not using PHP version 5.3 or higher, you can set your callback as follows to make it work:

$element->addFilter('callback', array('callback' => array($this, 'funcName')));

And add under your init() method in your form:

function funcName($v) {
    return preg_replace(array('/bob/', '/sam/'), array('john', 'dave'), $v);
}

At last, if you want to use only the PregReplace filter, unlike Marcin's answer (the syntax is incorrect), you can still do it this way:

$element->addFilter('pregReplace', array(
          array('match' => array('/bob/', '/sam/'),
                'replace' => array('john', 'dave')
)));

That should do the trick ;)

link|improve this answer
we couldn`t define function like this! it shows error!! – afsane Apr 3 at 18:33
What kind of error? This is a correct PHP5 syntax though. – Liyali Apr 3 at 18:37
unexpected function – afsane Apr 3 at 18:41
I did it and it shows this error : Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash . php version is PHP 5.3.1 – afsane Apr 3 at 19:26
My guess is that there is something wrong with your pattern. Could you post your code here? I just tried my code in example and it works perfectly. – Liyali Apr 3 at 19:59
show 5 more comments
feedback

Since PregReplace uses php's preg_replace function, I guess something like this would be possible (preg_replace can accepts arrays of patterns and array of corresponding replacement strings):

$word = new Zend_Form_Element_Text('word');
$word->addFilter('PregReplace', array(
        'match'   => array('/bob/', '/sam/'), 
        'replace' => array('john' ,  dave)
    ));
$this->addElement($word);

I haven't tested it though. Hope it will work.

link|improve this answer
1  
Thanks Marcin, unfortunately that didn't work. I received the error 'Zend_Filter_PregReplace does not have a valid MatchPattern set' – AndySidd Jul 18 '11 at 9:40
so what we can do?!! this is my problem too!!! – afsane Apr 3 at 16:11
feedback

I was unable to get the previous example to work with 'PregReplace'. I switched instead to calling it with new Zend_Filter_PregReplace(). It now works for me.

$word->addFilter(new Zend_Filter_PregReplace(array(
                'match' => array('/bob/', '/sam/'), 
                'replace'=> array('john', 'dave'))
));
link|improve this answer
i did the same work but it shows me this error : "Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash" when I run every filter separatley they work fine without error!! – afsane Apr 3 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.