00001 <?php 00032 class StripspaceFilter implements FilterInterface 00033 { 00041 public static function execute ($s, $options) 00042 { 00043 $patron = '/[\s]/'; 00044 return preg_replace($patron, '', (string) $s); 00045 } 00046 }