Изменить Mime type через php headers

Шпаргалка как поменять mime type используя заголовки в php.

  1. Atom

    header('Content-Type: application/atom+xml');
  2. CSS

    header('Content-Type: text/css');
  3. Javascript

    header('Content-Type: text/javascript');
  4. JPEG Image

    header('Content-Type: image/jpeg');
  5. JSON

    header('Content-Type: application/json');
  6. PDF

    header('Content-Type: application/pdf');
  7. RSS

    header('Content-Type: application/rss+xml; charset=ISO-8859-1');
  8. Text (Plain)

    header('Content-Type: text/plain');
  9. XML

    header('Content-Type: text/xml');