ALS uw host nog steeds php 5.2 gebruikt en geen toegang heeft tot de bestandsinfo-functies, kunt u de handtekening van de header van de bestanden (magische getallen) testen om het mime-type te bepalen
function mimetype($data)
{
//File signatures with their associated mime type
$Types = array(
"474946383761"=>"image/gif", //GIF87a type gif
"474946383961"=>"image/gif", //GIF89a type gif
"89504E470D0A1A0A"=>"image/png",
"FFD8FFE0"=>"image/jpeg", //JFIF jpeg
"FFD8FFE1"=>"image/jpeg", //EXIF jpeg
"FFD8FFE8"=>"image/jpeg", //SPIFF jpeg
"25504446"=>"application/pdf",
"377ABCAF271C"=>"application/zip", //7-Zip zip file
"504B0304"=>"application/zip", //PK Zip file ( could also match other file types like docx, jar, etc )
);
$Signature = substr($data,0,60); //get first 60 bytes shouldnt need more then that to determine signature
$Signature = array_shift(unpack("H*",$Signature)); //String representation of the hex values
foreach($Types as $MagicNumber => $Mime)
{
if( stripos($Signature,$MagicNumber) === 0 )
return $Mime;
}
//Return octet-stream (binary content type) if no signature is found
return "application/octet-stream";
}
OPMERKING: Sommige handtekeningen komen mogelijk overeen met gedeeltelijke delen van andere, bijvoorbeeld de handtekening van het PK Zip-bestand komt overeen met de eerste 4 bytes van de handtekening van het java-archief (.jar), extra instructies zijn nodig in de foreach-lus om de juiste handtekening voor de mime te bepalen typ , maar voor jouw situatie zou dit voldoende moeten zijn.
Een bijgewerkte lijst met bestandshandtekeningen is te vinden op http://www.garykessler.net/library /file_sigs.html als iemand meer typen bestandshandtekeningen nodig heeft.