📅  最后修改于: 2023-12-03 15:18:27.180000             🧑  作者: Mango
PHP文件类型()函数用于返回指定文件的 MIME 类型。它可以帮助您确定要发送的内容类型,或检查接收到的内容类型是否符合您的要求。
string mime_content_type ( string $filename )
该函数返回指定文件的 MIME 类型,如果无法确定文件类型,则返回 false。
<?php
$file = "example.jpg";
$mime_type = mime_content_type($file);
echo "文件 ".$file." 的 MIME 类型为:".$mime_type;
?>
输出:
文件 example.jpg 的 MIME 类型为:image/jpeg