Hi,
How can I get filtered data without using a validator, only the filter:
Example:
$validators = null;
$filters = array('StringTrim','StripTags');
$data = some data here.....
$filter = new Zend_Filter_Input($filters, $validators,$data,$options);
// get filtered Data:
$filter->{field}
AS you can see, I didn't provide any validator.
Or should I use Zend_Input Directly ?
Thanks.
--
View this message in context:
http://www.nabble.com/How-to-get-Filtered-data-from-Zend_Input_Filter-tp16211128s16154p16211128.html
Sent from the Zend Framework mailing list archive at Nabble.com.