La función mime_content_type() es una función incorporada en PHP que se usa para obtener el tipo de contenido MIME de un archivo.
Sintaxis:
string mime_content_type( $file )
Parámetros: esta función acepta un solo parámetro $archivo que especifica la ruta del archivo cuyos detalles MIME se van a encontrar.
Valor devuelto: esta función devuelve el tipo de contenido MIME o Falso en caso de error.
Los siguientes programas ilustran la función mime_content_type() en PHP:
Programa 1:
Imagen original:
<?php // PHP program to illustrate mime_content_type function echo mime_content_type('gfg.png') . "</br>"; ?>
Producción:
image/png
Programa 2:
Imagen original:
<?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>"; ?>
Producción:
image/png text/plain image/gif text/plain application/vnd.ms-powerpoint application/pdf
Referencia: http://php.net/manual/en/function.mime-content-type.php