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