Php/docs/function.mime-content-type

来自菜鸟教程
跳转至:导航、​搜索

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。 或者在失败时返回 false


错误/异常

失败时抛出E_WARNING警告。


范例

Example #1 mime_content_type() 示例

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

以上例程会输出:


image/gif
text/plain

参见