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/plain
或 application/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