ID: ".$image['id']."
"; // Last time image was updated $update_time = new DateTime($image['upload']); echo "Last updated: ".$update_time->format('d/m/Y H:i:s T')."
"; ?>File Type: ".pathinfo($image['imagename'], PATHINFO_EXTENSION)."
"; // Image resolution list($width, $height) = getimagesize($image_path); echo "Image resolution: ".$width."x".$height."
"; function human_filesize($bytes, $decimals = 2) { $sz = 'BKMGTP'; $factor = floor((strlen($bytes) - 1) / 3); return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor]; } echo "File size: ".human_filesize(filesize($image_path), 2)."
"; ?>