mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 08:34:41 +01:00
9 lines
126 B
PHP
9 lines
126 B
PHP
<?php
|
|
|
|
$songs = glob('*raw');
|
|
$songs_length = count($songs);
|
|
|
|
for ($x = 0; $x < $songs_length; $x++) {
|
|
shuffle($songs);
|
|
}
|