0

我正在实现使用 PHP 将图像上传/保存到服务器的代码。

一些图像被上传并保存,很好。这些图像是我从互联网上下载的照片或其他人给我的照片。

但是我用自己的数码相机拍摄的照片没有上传,我得到“无效文件”。现在,我的照片是.JPG。我更改了代码以包含JPG字符串。我检查并编辑了upload_max_filesizephp.ini所以它不是大小。

我使用 PHP 5.3.13

有任何想法吗?这是什么魔法?

编辑

也许它是我图片的元数据?数码相机的设置?有解决方法吗?

提前致谢

这是服务器端的代码

$allowedExts = array("gif", "jpeg", "jpg", "png");
 $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/bmp")
|| ($_FILES["file"]["type"] == "image/JPG")
|| ($_FILES["file"]["type"] == "image/x-png")
 || ($_FILES["file"]["type"] == "image/png"))
 && ($_FILES["file"]["size"] < 4000000)
 && 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("cultmapsite/upload" . $_FILES["file"]["name"]))
       {
       echo $_FILES["file"]["name"] . " already exists. ";
       }
     else
       {
       move_uploaded_file($_FILES["file"]["tmp_name"],
       "upload/" . $_FILES["file"]["name"]);
       echo "Stored in: " . "cultmapsite/upload" . $_FILES["file"]["name"];
       }
     }
   }
 else
   {
   echo "Invalid file";
   }
4

4 回答 4

2

you changed your code to include the ($_FILES["file"]["type"] == "image/JPG") but since you are also using explode and the $allowedExts array you should also include JPG there...

try

$allowedExts = array("gif", "jpeg", "jpg", "png", "GIF", "JPEG", "JPG", "PNG");

于 2013-08-22T14:08:58.057 回答
0

尝试 .jpg 代替 .JPG 我认为这可能是大写字母问题

于 2013-08-22T13:51:55.453 回答
0

而不是回显“无效文件”,

echo "Invalid File : " . $_FILES["file"]["name"] . $_FILES["file"]["type"];

你会明白为什么它会返回那个。

于 2013-08-22T14:14:31.963 回答
0

尝试将数码相机中的图像转换为 .png 等其他扩展名

于 2013-08-22T13:48:23.097 回答