mysql mime 类型_从MySQL列中确定MIME类型

bd96500e110b49cbb3cd949968f18be7.png

I received an exported database from MSAccess (not my favorite) and I imported it to a MySQL table. There's a column named 'customerImage' and is a 'long BLOB' type with 'binary' as attribute. How can I determinate the Mime Type? I've tried different methods but all of them requires to be a file but data.

If someone could help me with PHP code or MySQL command would be great.

解决方案

IF your host still uses php 5.2 and dont have access to the fileinfo functions you can test the files header signature (magic numbers) to determine mime type

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";

}

NOTE: Some signatures may match partials of others, for instance the PK Zip file signature matches the first 4 bytes of java archive (.jar) file signature, extra statements would be needed in the foreach loop to determine the correct signature for the mime type, but for your situation this should do.

A updated list of file signatures can be found at http://www.garykessler.net/library/file_sigs.html if someone needs more file signature types.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值