In a blog post I use the following PHP to set the content-type of a response:
header(\'content-type: application/json; charset=utf-8\');
I
header('Content-type: image/png') did not work with PHP 5.5 serving IE11, as in the image stream was shown as text
header('Content-type: image/png')
header('Content-Type: image/png') worked, as in the image appeared as an image
header('Content-Type: image/png')
Only difference is the capital 'T'.