Я хочу изменить имя загруженного файла на текущее время, используя time()
, но я не могу понять, куда вставить новое имя времени?
Может кто-нибудь попробовать взглянуть наэто?
<?php
if (!empty($_FILES)) {
$newName = time(); <-- Should be the new temp name, insted of the uploaded one.
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_GET['folder'] . '/';
$targetFile = str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];
move_uploaded_file($tempFile,$targetFile);
}
echo '1';
?>