파일 MIME 유형을 가져오는 PHP 메소드
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 ?>
2. Fileinfo 방법 사용(공식 권장)
fileinfo를 사용하려면 php_fileinfo 확장 프로그램을 설치해야 합니다.
설치한 경우 Extension_dir 디렉터리 php_fileinfo.dll(windows),fileinfo.so(linux)에서 찾을 수 있습니다. )
php.ini를 열고 Extension=php_fileinfo.dll 앞의 ";"를 제거한 다음 Apache를 다시 시작합니다.
<?php $fi = new finfo(FILEINFO_MIME_TYPE); $mime_type = $fi->file('1.jpg'); echo $mime_type; // image/jpeg ?>
exif_imagetype 메소드를 사용하려면 php_exif 설치 필요 확장 기능이 있으며 php_mbstring 확장 기능을 설치해야 합니다
설치되어 있으면 Extension_dir 디렉터리 php_exif.dll에서 찾을 수 있습니다( windows),exif .so(linux)
php.ini를 열고 확장자=php_mbstring.dll 앞에 있는 ","를 제거하고 확장자=php_exif .dll을 추가한 다음 Apache를 다시 시작하세요
<?php $image = exif_imagetype('1.jpg'); $mime_type = image_type_to_mime_type($image); echo $mime_type; // image/jpeg ?>
위 내용은 관련 내용을 포함하여 PHP에서 파일의 MIME 형식을 구하는 방법을 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.