I don't really want to call the Zend filter in my code after every getRequest->getParam('x') if I don't have to. Is there a lazy way of filtering everything inside getRequest magically?
Edit: When I say filter, I mean, escapting tags, cleaning out the XSS, and escaping any sql escape characters.
i.e:
$myVar = $this->getRequest()->getParam('x');
filter the variable, escape sql stuf... etc
What's the standard? How are you doing it?