00001 <?php 00032 class LowerFilter implements FilterInterface 00033 { 00041 public static function execute ($s, $options) 00042 { 00043 return strtolower((string) $s); 00044 } 00045 }