2

PHP 文件:
这是我在 php.ini 中的表单操作文件。
我成功上传图像,但文本文件产生“无效文件错误”。
可能是什么错误以及如何解决?

<?php
$allowedExts = array("gif", "jpeg", "jpg", "png", "txt");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/jpg")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/x-png")
|| ($_FILES["file"]["type"] == "image/png")
|| ($_FILES["file"]["type"] == "text/txt"))
&& ($_FILES["file"]["size"] < 20000000)
&& in_array($extension, $allowedExts))
  {
  if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
}
  else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br>";
echo "Type: " . $_FILES["file"]["type"] . "<br>";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";

if (file_exists("C:/inetpub/wwwroot/" . $_FILES["file"]["name"]))
  {
  echo $_FILES["file"]["name"] . " already exists. ";
  }
else
  {
  move_uploaded_file($_FILES["file"]["tmp_name"],
  "C:/inetpub/wwwroot/" . $_FILES["file"]["name"]);
  echo "Stored in: " . "C:/inetpub/wwwroot/" . $_FILES["file"]["name"];
  }
}
  }
else
  {
     echo "Invalid file";
  }
?> 

提前致谢。

4

2 回答 2

5

我认为您的 .txt 文件的 mime 类型不正确。您可以尝试txt/plain而不是txt/text在您的 IF 语句中。

于 2013-08-07T11:32:25.267 回答
1

使用以下代码:

|| ($_FILES["file"]["type"] == "text/plain"

代替

|| ($_FILES["file"]["type"] == "text/txt"

这是mime-content-type的列表。

于 2013-08-07T11:34:00.790 回答