7 lines
94 B
PHP
7 lines
94 B
PHP
<?php
|
|
|
|
$songs = glob('*raw');
|
|
for ($x = 0; $x < count($songs); $x++) {
|
|
shuffle($songs);
|
|
}
|