5
1
Fork 0
mirror of https://github.com/Anvilcraft/jensmemes synced 2024-09-24 18:28:54 +02:00
jensmemes/website/random.php
2020-07-22 15:27:17 +02:00

12 lines
304 B
PHP

<?php
$files = glob("images/*/*");
$random = rand(0, count($files) - 1);
$file = $files[$random];
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if ($ext == "mp4") {
echo "<a href='$file'><video src='$file' controls ></video></a>";
} else {
echo "<a href='$file'><img src='$file' /></a>";
}
?>