Список популярных заголовков MIME-типов
- CSS
header('Content-type: text/css');
- JavaScript
header('Content-type: text/j-avascript');
- JPEG Image
header('Content-type: image/jpeg');
- JSON
header('Content-type: application/json; charset=UTF-8');
- PDF
header('Content-type: application/pdf');
- RSS
header('Content-Type: application/rss+xml; charset=UTF-8');
- Text (Plain)
header('Content-type: text/plain');
- XML
header('Content-type: text/xml');
Менее популярные можно найти в списке MIME-типов.
Получить mime-тип файла:
$mimetype = mime_content_type($filepath);