mime_content_type

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

mime_content_type检测文件的 MIME 类型

说明

mime_content_type ( string $filename ) : string

返回通过使用 magic.mime 检测到的文件 MIME 类型。

参数

filename

要检测的文件名。

返回值

返回文件的 MIME 内容类型,例如 text/plainapplication/octet-stream

范例

Example #1 mime_content_type() 示例

<?php
echo mime_content_type('php.gif') . "\n";
echo 
mime_content_type('test.php');
?>

以上例程会输出:

image/gif
text/plain

参见