当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mime_content_type()用法及代码示例


mime_content_type()函数是PHP中的内置函数,用于获取文件的MIME content-type。

用法:

string mime_content_type( $file )

参数:该函数接受单个参数$file,该参数指定要查找MIME详细信息的文件的路径。


返回值:此函数返回MIME内容类型,否则返回False。

以下示例程序旨在说明PHP中的mime_content_type()函数:

程序1:
原始图片:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

<?php 
  
// PHP program to illustrate mime_content_type function 
  
echo mime_content_type('gfg.png') . "</br>"; 
?>

输出:

image/png

程序2:
原始图片:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png

<?php 
  
// PHP program to illustrate  
// mime_content_type function 
  
// Providing and print result of different kind of files  
echo mime_content_type('/home/rajvir/Desktop/gfg.png') . "</br>"; 
echo mime_content_type('/home/rajvir/Desktop/gfg_Article.html') . "</br>"; 
echo mime_content_type('/home/rajvir/Downloads/gfg.gif') . "</br>"; 
echo mime_content_type('/home/rajvir/Desktop/gfg_contribute.txt') . "</br>"; 
echo mime_content_type('/home/rajvir/Downloads/geeks.ppt') . "</br>"; 
echo mime_content_type('/home/rajvir/Downloads/geeks.pdf') . "</br>"; 
  
?>

输出:

image/png
text/plain
image/gif
text/plain
application/vnd.ms-powerpoint
application/pdf

参考: http://php.net/manual/en/function.mime-content-type.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | mime_content_type() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。