(PHP 4 >= 4.3.0, PHP 5, PHP 7)
mime_content_type — ファイルの MIME Content-type を検出する
$filename
)magic.mime ファイルの情報を用いて、 ファイルの MIME content type を返します。
filename
調べるファイルへのパス。
Content type を MIME 形式で返します。 たとえば text/plain あるいは application/octet-stream のような形式です。
例1 mime_content_type() の例
<?php
echo mime_content_type('php.gif') . "\n";
echo mime_content_type('test.php');
?>
上の例の出力は以下となります。
image/gif text/plain