简体   繁体   English

PHP:文件上传move_uploaded_file()不起作用

[英]PHP: File upload move_uploaded_file() not working

I just made a file upload code and I was wondering why the file upload wasn't working. 我刚刚制作了一个文件上传代码,我想知道为什么文件上传不起作用。 I changed the upload dir to 0777. This is my upload HTML code: 我将上传目录更改为0777.这是我上传的HTML代码:

<form action="upload_file.php" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" /> 
<br />
<input type="submit" name="submit" value="Submit" />
</form>

And PHP Code: 和PHP代码:

<?php
if ($_FILES["file"]["error"] > 0){
echo "Error Code: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Uploaded file: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kilobytes<br />";

if (file_exists("/files/".$_FILES["file"]["name"]))
  {
  echo $_FILES["file"]["name"] . " already exists. No joke-- this error is almost <i><b>impossible</b></i> to get. Try again, I bet 1 million dollars it won't ever happen again.";
  }
else
  {
  move_uploaded_file($_FILES["file"]["tmp_name"],"/filebro/".$_FILES["file"]["name"]);
  echo "Done";
  }
}
?>

So, what could the problem possibly be? 那么问题可能是什么呢?

尝试

move_uploaded_file($_FILES["file"]["tmp_name"],"filebro/".$_FILES["file"]["name"]);

Your 您的

if (file_exists("/files/".$_FILES["file"]["name"]))

will always return false. 总是会返回false。 The file is saved with its temp name. 该文件以其临时名称保存。

Try 尝试

if (is_uploaded_file($_FILES["file"]["tmp_name"]))

instead. 代替。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM