php 取得檔案mime類型的方法
1.使用 mime_content_type 方法
string mime_content_type ( string $filename ) Returns the MIME content type for a file as determined by using information from the magic.mime file.
<?php $mime_type = mime_content_type('1.jpg'); echo $mime_type; // image/jpeg ?>
使用fileinfo需要安裝php_fileinfo
如已安裝可以在extension_dir目錄下找到php_fileinfo.dll
fileinfo.so(linux)
;"去掉,然後重啟apache。
<?php $fi = new finfo(FILEINFO_MIME_TYPE); $mime_type = $fi->file('1.jpg'); echo $mime_type; // image/jpeg ?>
3.使用image_type_to_mime_type 方法(只能處理圖象類型)
(windows),exif.so(linux)
打開php.ini,extension=php_mbstring.dll, extension=php_exf.ini,extension=php_mbstring.dll, extension=php_exache= <?php
$image = exif_imagetype('1.jpg');
$mime_type = image_type_to_mime_type($image);
echo $mime_type; // image/jpeg
?>
Tips:如果使用檔案名稱的後綴來判斷,因為檔案後綴是可以修改的,所以使用檔案後綴來判斷會不準確。
以上就介紹了php 取得檔案mime類型的方法,包括了方面的內容,希望對PHP教學有興趣的朋友有幫助。