mirror of
https://github.com/danog/magnaluna.git
synced 2024-11-26 11:34:39 +01:00
Add songs.php
This commit is contained in:
parent
1f3cae095f
commit
e7a18f1b3d
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,7 +6,6 @@ magnabroadcast.php
|
||||
broadcast.php
|
||||
|
||||
docs/.jekyll-metadata
|
||||
songs.php
|
||||
_site
|
||||
|
||||
# JetBrains IDE
|
||||
|
11
songs.php
Normal file
11
songs.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
$songs = \glob('*raw');
|
||||
if (!$songs) {
|
||||
die('No songs defined! Convert some songs as described in https://docs.madelineproto.xyz/docs/CALLS.html#playing-mp3-files');
|
||||
}
|
||||
$songs_length = \count($songs);
|
||||
|
||||
for ($x = 0; $x < $songs_length; $x++) {
|
||||
\shuffle($songs);
|
||||
}
|
Loading…
Reference in New Issue
Block a user