Skip to content

Instantly share code, notes, and snippets.

@Webklex
Created June 14, 2013 07:15
Show Gist options
  • Save Webklex/5780053 to your computer and use it in GitHub Desktop.
Save Webklex/5780053 to your computer and use it in GitHub Desktop.
Bilder als Content behandeln - Einbindung als IMG und gleichzeitige Ausführung eines Scripts somit möglich.
// Test image.
$fn = 'gfx/check_mail.gif';
// Image not cached or cache outdated, we respond '200 OK' and output the image.
header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($fn)).' GMT', true, 200);
header('Content-Length: '.filesize($fn));
header('Content-Type: image/gif');
readfile($fn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment