Webklex
6/14/2013 - 7:15 AM

Bilder als Content behandeln - Einbindung als IMG und gleichzeitige Ausführung eines Scripts somit möglich.

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);