mime_content_type()函數是PHP中的內置函數,用於獲取文件的MIME content-type。
用法:
string mime_content_type( $file )
參數:該函數接受單個參數$file,該參數指定要查找MIME詳細信息的文件的路徑。
返回值:此函數返回MIME內容類型,否則返回False。
以下示例程序旨在說明PHP中的mime_content_type()函數:
程序1:
原始圖片:
<?php
// PHP program to illustrate mime_content_type function
echo mime_content_type('gfg.png') . "</br>";
?>
輸出:
image/png
程序2:
原始圖片:
<?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
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | mime_content_type() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。