'Jan', 2=>'Feb', 3=>'Mar', 4=>'Apr', 5=>'May', 6=>'Jun', 7=>'Jul', 8=>'Aug', 9=>'Sep', 10=>'Oct', 11=>'Nov', 12=>'Dec'); function fileParseDate($date) { global $shortMonths; return substr($date, 3) . ' ' . $shortMonths[substr($date, 1, 2)]; } ?>