$fileName -- имя файла $check -- определяет нужно ли делать прове $formats -- определяет массив допустимых фор
[code] function fileFormat ($fileName, $check = TRUE, $formats = { global $possibleFileFormats; if(!$formats) $formats = $possibleFileFormats; $fileName = explode('.', $fileName) ; $count = count($fileName); if($count != 2) $out = FALSE; else { $format = strtolower($fileName[-- $count]); if($check) { if(in_array($format, $formats)) $out = $format; else $out = FALSE; } else $out = $format; } return $out; }
[/code]