Created
June 14, 2013 07:15
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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