1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

prevent filename collisions

This commit is contained in:
Rj48 2017-01-22 17:17:15 +01:00
parent 9ceb65a05c
commit 626a227f76

View File

@ -112,9 +112,14 @@ function storeFile($name, $tmpFile, $formatted = false)
}
$ext = getExtension($name);
$id = rndStr($ID_LENGTH);
$basename = $id . '.' . $ext;
$target_file = $STORE_PATH . $basename;
$len = $ID_LENGTH;
do //generate filenames until we get one, that doesn't already exist
{
$id = rndStr($len++);
$basename = $id . '.' . $ext;
$target_file = $STORE_PATH . $basename;
} while (file_exists($target_file));
$res = move_uploaded_file($tmpFile, $target_file);
if ($res)
{