2013-07-25 38 views
5
$finfo = new finfo(FILEINFO_MIME_TYPE); 
echo $finfo->file($file) 

nó mang lại:loại sai trả về bởi finfo

cho .msg: CDF V2 tài liệu, tham nhũng: Không thể đọc thông tin tóm tắt

cho .doc: application/vnd.ms-excel

cho .docx: application/zip

...

/opt/xampp/etc/mime.types vẻ tốt

bất kỳ ý tưởng nào?

+5

Mỗi một trong các microsofts '. * X' thực chất là một tệp zip có tệp XML. Hãy thử giải nén nó và xem cho chính mình – AmazingDreams

+0

Đoán kiểu MIME chỉ là: đoán. – deceze

Trả lời

0

Như AmazingDreams đã nói, đây là những tệp openxml trong tệp zip. Nếu bạn giải nén, nó sẽ chỉ cho bạn biết đó là một XML.

Bạn có thể addtype để các tập tin htaccess để apache có thể nhận ra chúng ... Chỉ cần thêm những dòng này vào tập tin htaccess của bạn trong thư mục gốc của trang web của bạn:

AddType application/vnd.ms-word.document.macroEnabled.12 .docm 
AddType application/vnd.openxmlformats-officedocument.wordprocessingml.document docx 
AddType application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx 
AddType application/vnd.ms-powerpoint.template.macroEnabled.12 potm 
AddType application/vnd.openxmlformats-officedocument.presentationml.template potx 
AddType application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam 
AddType application/vnd.ms-powerpoint.slideshow.macroEnabled.12 ppsm 
AddType application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx 
AddType application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm 
AddType application/vnd.openxmlformats-officedocument.presentationml.presentation pptx 
AddType application/vnd.ms-excel.addin.macroEnabled.12 xlam 
AddType application/vnd.ms-excel.sheet.binary.macroEnabled.12 xlsb 
AddType application/vnd.ms-excel.sheet.macroEnabled.12 xlsm 
AddType application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx 
AddType application/vnd.ms-excel.template.macroEnabled.12 xltm 
AddType application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx 

Xem here cho một cuộc thảo luận về chủ đề này .

Các vấn đề liên quan