Skip to content

Instantly share code, notes, and snippets.

View Cosmeen's full-sized avatar

Cosmin. Cosmeen

View GitHub Profile
<?php
class compareImages
{
private function mimeType($i)
{
/*returns array with mime type and if its jpg or png. Returns false if it isn't jpg or png*/
$mime = getimagesize($i);
$return = array($mime[0],$mime[1]);
switch ($mime['mime'])