. */ /* */ /*************************************************************************************/ namespace Thelia\Tools; class Image { static public 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; } }