. */ /* */ /*************************************************************************************/ namespace Thelia\Tools; class Image { public static function isImage($filePath, $allowedImageTypes = null) { $imageFile = getimagesize($filePath); $imageType = $imageFile[2]; if (!is_array($allowedImageTypes) && $imageType != IMAGETYPE_UNKNOWN) { return true; } if (in_array($imageType , $allowedImageTypes)) { return true; } return false; } }