uploadifyを使用していますが、アップロードされたファイルの名前を変更するためにphpを編集する方法がよくわかりません。
基本的に、ユーザーは最大4つのファイルをアップロードでき、それらには1-img-1、1-img-2、1-img-3、1-img-4のような名前を付ける必要があります。最初の番号はユーザーIDです( POSTを介してアクセスできます)。
これがuploadifyphpスクリプトです:
<?php
/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/
// Set the uplaod directory
$uploadDir = '/img/listing_images/';
// Set the allowed file extensions
$fileTypes = array('jpg', 'jpeg', 'gif', 'png'); // Allowed file extensions
$verifyToken = md5('unique_salt' . $_POST['timestamp']);
if (!empty($_FILES) && $_POST['token'] == $verifyToken) { $i++;
$tempFile = $_FILES['Filedata']['tmp_name'];
$uploadDir = $_SERVER['DOCUMENT_ROOT'] . $uploadDir;
$targetFile = $uploadDir . $_FILES['Filedata']['name'];
// Validate the filetype
$fileParts = pathinfo($_FILES['Filedata']['name']);
if (in_array(strtolower($fileParts['extension']), $fileTypes)) {
// Save the file
move_uploaded_file($tempFile, $targetFile);
echo 1;
} else {
// The file type wasn't allowed
echo 'Invalid file type.';
}
}
?>
アップロードされたファイルの名前を変更する方法を誰かが教えてくれるかどうか疑問に思っていますか?