我想通過使用time()
更改上傳文件的名稱,當前時間,但我似乎無法找出插入新時間名稱的位置?Uploadify - 將臨時名稱更改爲時間並上傳 - PHP
有人可以試試看嗎?
<?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';
?>
'$的TargetFile = str_replace函數( '//', '/',$ TARGETPATH)。 $ _FILES ['Filedata'] ['name']'這一行...改變任何你需要的..'$ _FILES ['Filedata'] ['name']'從這裏改變.. – Red 2012-03-28 09:45:54