Skip to content

Instantly share code, notes, and snippets.

@tutuca
Created February 22, 2012 23:58
Show Gist options
  • Save tutuca/1888503 to your computer and use it in GitHub Desktop.
Save tutuca/1888503 to your computer and use it in GitHub Desktop.
Serve any image directly.
<?php
$dir = glob("*.gif");
header('Content-Type: image/gif');
echo file_get_contents($dir[array_rand($dir)]); //file_get_contents streams the file directly as gd's Image
// does not support animated gifs
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment