5
1
Fork 0
mirror of https://github.com/Anvilcraft/jensmemes synced 2024-09-25 10:58:56 +02:00
jensmemes/website/random.php

13 lines
304 B
PHP
Raw Normal View History

2020-06-27 12:44:26 +02:00
<?php
$files = glob("images/*/*");
$random = rand(0, count($files) - 1);
$file = $files[$random];
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if ($ext == "mp4") {
2020-06-28 17:44:27 +02:00
echo "<a href='$file'><video src='$file' controls ></video></a>";
2020-06-27 12:44:26 +02:00
} else {
echo "<a href='$file'><img src='$file' /></a>";
}
?>