Skip to content

Instantly share code, notes, and snippets.

@greenpeas
Last active April 23, 2018 05:13
Show Gist options
  • Save greenpeas/e838efc791dad714cb0570f206219563 to your computer and use it in GitHub Desktop.
Save greenpeas/e838efc791dad714cb0570f206219563 to your computer and use it in GitHub Desktop.
Mp3 music randomizer
<?php
$dir = './';
$files = scandir($dir);
$list = [];
for ($i = 2; $i < count($files); $i++) {
$ext = substr($files[$i], -3, 3);
if ($ext != 'mp3') {
continue;
}
$newName = md5(uniqid()) . '.' . $ext;
echo $files[$i] . ' > ' . $newName . PHP_EOL;
rename($files[$i], $newName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment