我收到以下警告我無法使用php上傳文件?
Warning: copy(file.txt) [function.copy]: failed to open stream: No such
file or directory in /users/abc/pantry/public_html/index.php on line 5
Could not copy file!
<?php
if ($_FILES['file']['name'] != "") {
copy($_FILES['file']['name'], "https://stackoverflow.com/users/abc/pantry/public_html/temp/") or die("Could not copy file!");
} else {
die("No file specified!");
}
?>
即使文件夾TEMP內存在與777的權限。
該OP的問題也是,PHP無法找到服務器上的文件的臨時名稱 –
它的工作。謝謝。 – pcoder