2009-11-04 70 views
-2

我怎麼會這裏簡單的PHP回聲幫助

move_uploaded_file($_FILES["torrent"]["tmp_name"], "uploads/ (HERE) .torrent"); 

添加回聲我都試過,沒有運氣的幾件事情。

+0

是的,你想打印什麼?請重新提出問題。因爲這不是問題。 – 2009-11-04 13:50:35

+0

你爲什麼要在這裏回聲一些? – 2009-11-04 13:50:38

+0

你應該閱讀字符串連接。這是必要的知識,imo。 http://php.net/manual/en/language.operators.string.php – GZipp 2009-11-04 14:54:37

回答

6

這只是一個單純的猜測,但也許你想要做這樣的事情:

$newFileName = 'someFielenameGeneratedByYourScript'; 
move_uploaded_file($_FILES["torrent"]["tmp_name"], "uploads/" . $newFileName . ".torrent"); 
+4

+1瞭解OP想要做什麼。 :D – NawaMan 2009-11-04 13:59:07

+0

+1瞭解問題以及:) – 2009-11-04 17:40:14

1

你可以這樣做:

$location = "uploads/" . $name . ".torrent"; 

move_uploaded_file($_FILES["torrent"]["tmp_name"], $location); 

echo $location; 
1

你不需要呼應,因爲你是它傳遞給函數並不想在輸出中顯示。

move_uploaded_file($_FILES["torrent"]["tmp_name"], "uploads/ ".$variable." .torrent");