0

我使用 Uploadify 上传多张图片...

使用此 php 代码即时处理上传并存储到服务器...

所有这些工作正常......但我需要在上传时重命名图像,重命名为数字并从 1 个示例开始

1.jpg
2.jpg
3.jpg
4.jpg
等等...

// The upload directory
$dir = $_SERVER['DOCUMENT_ROOT'].'/uploads/'.$_POST['folder'].'/';

if (!file_exists($_SERVER['DOCUMENT_ROOT'] . $dir)) {
    mkdir($_SERVER['DOCUMENT_ROOT'] . $dir);
}
// Allowed file extensions
$fileTypes = array('jpg', 'jpeg', 'gif', 'png'); 

$verifyToken = md5('unique_salt' . $_POST['timestamp']);

if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
    $tempFile   = $_FILES['Filedata']['tmp_name'];  
    $targetFiles = $dir . $_FILES['Filedata']['name'];

    // Validate the filetype
    $fileParts = pathinfo($targetFiles);
    if (in_array(strtolower($fileParts['extension']), $fileTypes)) {
        move_uploaded_file($tempFile, $targetFiles);
        echo '1';
    } else {
        // The file type wasn't allowed
        echo 'Invalid file type.';
    }
}
4

0 回答 0