Skip to content

Instantly share code, notes, and snippets.

@yukari-n
Created January 4, 2020 06:48
Show Gist options
  • Select an option

  • Save yukari-n/b569c87a8810dd44b1f9a5127f71a18e to your computer and use it in GitHub Desktop.

Select an option

Save yukari-n/b569c87a8810dd44b1f9a5127f71a18e to your computer and use it in GitHub Desktop.
ランダムバナー
<?php
$image = array(
'banner1.jpg',
'banner2.jpg',
'banner3.jpg'
);
$image = $image[rand(0, count($image)-1)];
if (file_exists($image)){
header('Content-Type: image/jpeg');
readfile($image);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment