我正在運行PHP腳本來從HTML表單上傳文件,重命名它們並將它們放在我的服務器上。它是上傳和重命名,但每個文件名現在開頭的單詞「陣列」
即:ArrayTest Document v1.0.pdf
我相當有信心它不是我的$newfn
變量,因爲我顯示在一個表中,它不顯示。ARRAY之前上傳後重命名文件名 - PHP
//This gets all the other information from the form
$name=$_POST['docname'];
$version=$_POST['docver'];
$date=$_POST['docdate'];
$type=$_POST['doctype'];
$author=$_POST['docauth'];
$file=$_FILES['uploaded']['name'];
//target directory is assigned
$target = $directory;
$target = $target . basename($file) ;
//grab file extension
$filetypes = array(
'image/png' => '.png',
'image/gif' => '.gif',
'image/jpeg' => '.jpg',
'image/bmp' => '.bmp',
'application/pdf' => '.pdf');
$ext = $filetypes[$_FILES['uploaded']['type']];
//generate new filename variable "name v??.xxx"
$newfn = $name . ' ' . 'v' . $version . $ext;
//Check to see if file exists
if (file_exists($directory . $file))
{
echo $_FILES["uploaded"]["name"] . " already exists. ";
}
else
{
//if its a new file, change name and upload
if (move_uploaded_file($_FILES["uploaded"]["tmp_name"],
$directory . $_FILES["uploaded"] . $newfn))
{
echo "The file ". basename($file). " has been uploaded";
}
else
{
echo "Sorry, there was a problem uploading your file.";
}
}
我覺得它與我在move_uploaded_file
命令$FILES['uploaded']
部分。我嘗試了谷歌搜索,但只要我提到「數組」我的谷歌結果是沒有什麼遠程相同的。
好吧,謝謝下面我解決了它。爲了在以後任何人,我刪除整個$_FILES
陣列,使代碼讀取,
//if its a new file, change name and upload
if (move_uploaded_file($_FILES["uploaded"]["tmp_name"],
$directory . $newfn))
現在一切都以正確的名稱結構上傳。謝謝。
它showas數組,因爲$ _FILES [「上傳」]是一個數組。 – 2012-07-08 06:33:26