5
1
Fork 0
mirror of https://github.com/Anvilcraft/jensmemes synced 2024-09-25 02:38:51 +02:00

Added random api

This commit is contained in:
Timo Ley 2020-06-27 12:44:26 +02:00
parent 578c7b9df8
commit f5f76f18fa
2 changed files with 19 additions and 0 deletions

12
website/random.php Normal file
View file

@ -0,0 +1,12 @@
<?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>";
}
?>

7
website/randomapi.php Normal file
View file

@ -0,0 +1,7 @@
<?php
$files = glob("images/*/*");
$random = rand(0, count($files) - 1);
$file = $files[$random];
echo "https://jensmemes.tilera.xyz/" . $file;
?>