php验证文件mine类型的函数mime_content_type

php的mime_content_type函数可以返回文件的类型,用法如下:

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

输出:

image/gif
text/plain

 

你可能感兴趣的