Переименование имени изображения с переполнением стека

Так что я только начинаю использовать PHP и вытащил скрипт из интернета. Он настроен так, что если файл уже существует, он не будет загружен. Я хочу иметь возможность переименовать файлы, чтобы он принимал все фотографии.


Вот кодекс:

    <?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
?>

Существует значение if, которое касается предварительно существующих файлов. Я предполагаю, что я изменю это для другого значения If, чтобы изменить имя? Спасибо за вашу помощь!

0

Решение

Вы можете переименовать файл, если загружаемый файл уже существует.

if (file_exists($target_file)) {
$target_file=$target_file."2";//Rename file by concating any other string
$uploadOk = 1;
}
1

Другие решения

Измените эту строку:

$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);

Для того, чтобы:

$target_file = $target_dir . 'this_is_my_new_name_whooah.txt';
1

Так мы работаем с одноименными изображениями.

$fileCount = count (glob ("uploads/*.jpg"));
$name = ( $fileCount + 1) . '.jpg';
$newName = "uploads/" . $name;
$tf = fopen($newName, 'w');
fclose($tf);
move_uploaded_file($_FILES['fileField']['tmp_name'], $newName);

Надеюсь, что это помогает вам!

1

Текущее решение не учитывает несколько файлов с одинаковыми именами, это быстрое масштабируемое решение.

if (file_exists($target_file))
{
$filecounter = 0; // initialize file count.

// runs loop increasing filecount and appending to filename until untaken filename is found.
do
{
$filecounter++;
$target_file .= " - $filecounter";
}
while( file_exists($target_file) );
}
1
// Check if file already exists
if (file_exists($target_file)) {
//echo "Sorry, file already exists.";
//$uploadOk = 0;
rename($target_file, 'your_new_filename');
}
0
По вопросам рекламы [email protected]