.rar, .zip files MIME Type

The answers from freedompeace, Kiyarash and Sam Vloeberghs: .rar application/vnd.rar, application/x-rar-compressed, application/octet-stream .zip application/zip, application/octet-stream, application/x-zip-compressed, multipart/x-zip I would do a check on the file name too. Here is how you could check if the file is a RAR or ZIP file. I tested it by creating a quick command line application. <?php if (isRarOrZip($argv[1])) … Read more