Skip to content

Instantly share code, notes, and snippets.

@FirstWhack
Created October 22, 2014 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FirstWhack/d61cf58d0b79e6bf5521 to your computer and use it in GitHub Desktop.
Save FirstWhack/d61cf58d0b79e6bf5521 to your computer and use it in GitHub Desktop.
<?php
$folder = 'mfimages/';
// Space seperated list of extensions, you probably won't have to change this.
$exts = 'jpg jpeg png gif';
$files = array(); $i = -1; // Initialize some variables
if ('' == $folder) $folder = './';
$handle = opendir($folder);
$exts = explode(' ', $exts);
while (false !== ($file = readdir($handle))) {
foreach($exts as $ext) { // for each extension check the extension
if (preg_match('/\.'.$ext.'$/i', $file, $test)) { // faster than ereg, case insensitive
$files[] = $file; // it's good
++$i;
}
}
}
closedir($handle); // We're not using it anymore
mt_srand((double)microtime()*1000000); // seed for PHP < 4.2
$rand = mt_rand(0, $i); // $i was incremented as we went along
ob_start();
echo($folder.$files[$rand]);
$Random1 = ob_get_contents();
ob_end_clean();
// Voila!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment