mirror of
https://github.com/danog/magnaluna.git
synced 2024-11-26 19:44:46 +01:00
12 lines
276 B
PHP
12 lines
276 B
PHP
<?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);
|
|
}
|