我目前正在通过uploadify了解更多信息,顺便提一下,我正在使用我的Wordpress插件。我正确上传了文件;它的工作是仅上传单个.pdf文件。当我尝试上传同一个文件两次并检查将存储上传文件的文件夹时,我只有一个文件。知道文件已经存在,知道它被覆盖了。让我感到困惑的是,我将如何更改第二个上传文件(同一文件)的文件名,以便它将导致'filename(2)','filename(3)'等等。
这是我的代码,请告诉我应该在uploadify.php上开始配置:
if (!empty($_FILES)) {
$name = $_FILES['Filedata']['name'];
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $targetFolder;
$targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];
$path = pathinfo($targetFile);
$newTargetFile = $targetFolder.$name;
// Validate the file type
$fileTypes = array('pdf'); // File extensions
$fileParts = pathinfo($_FILES['Filedata']['name']);
if (in_array($fileParts['extension'],$fileTypes)) {
// i think somewhere here , will i put something, but what's that something?
move_uploaded_file($tempFile,$newTargetFile);
echo $newTargetFile;
} else {
echo 'Invalid file type.';
}
return $newTargetFile;
}
答案 0 :(得分:2)
改变这个:
$newTargetFile = $targetFolder.$name;
对此:
$i = 2;
list( $filename, $ext) = explode( '.', $name);
$newTargetFile = $targetFolder . $filename . '.' . $ext;
while( file_exists( $newTargetFile)) {
$newTargetFile = $targetFolder . $filename . '(' . ++$i . ')' . '.' . $ext;
}
答案 1 :(得分:1)
试试这个:
<?php
function get_dup_file_name($file_name) {
$suffix = 0;
while (file_exists($file_name . ($suffix == 0 ? "" : "(" . $suffix . ")"))) {
$suffix++;
}
return $file_name . ($suffix == 0 ? "" : "(" . $suffix . ")");
}
?>