1
0
mirror of https://github.com/mashirozx/sakura.git synced 2025-01-06 09:53:49 +08:00
sakura/cover/index.php
2018-05-28 00:15:15 +08:00

15 lines
214 B
PHP

<?php
$img_array = glob("gallery/*.{gif,jpg,png}",GLOB_BRACE);
$img = array_rand($img_array);
$imgurl=$img_array[$img];
if($imgurl) {
header("Location: " . $imgurl);
exit();
} else {
exit('error');
}
?>