mime_content_type

(PHP 4 >= 4.3.0, PHP 5)

mime_content_type -- Detect MIME Content-type for a file

Description

string mime_content_type ( string filename)

Returns the MIME content type for a file as determined by using information from the magic.mime file. Content types are returned in MIME format, like text/plain or application/octet-stream.

예 1. mime_content_type() example

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

The above example will output:

image/gif
text/plain


 


mime_content_type() 함수가 없을 경우


<?php

if (!function_exists('mime_content_type')) {
function mime_content_type($f) {
$f = escapeshellarg($f);
return trim( `file -bi $f` );
}
}
$f = "./nbuilder/login.gif";
$gg = mime_content_type($f);
echo"$gg";
?>

Posted by 알 수 없는 사용자
,