So I am trying to build a script that scans a directory and returns random images to be used as backgrounds.
The php looks like this:
$dir = "views/img/bg/";
$dh = opendir($dir);
while (false !== ($filename = readdir($dh))) {
$files[] = $filename;
}
$random_key = array_rand($files, 1);
$random = $files[$random_key];
Then I am just using some simple jquery to attach the images as backgrounds:
<script>
$(document).ready(function(){
$("body").css( "background" , "url(http://'.$url_root.'/views/img/bg/'.$random.'), center center" );
});
</script>
Everything works fine but the array of all the images in the background folder seems to be returning stuff like ‘.’ or ‘..’ instead of image names every once in a while. Im not sure what is going on – any ideas?
‘.’ and ‘..’ are returned for current and parent directory. You can filter them: