我正在实现使用 PHP 将图像上传/保存到服务器的代码。
一些图像被上传并保存,很好。这些图像是我从互联网上下载的照片或其他人给我的照片。
但是我用自己的数码相机拍摄的照片没有上传,我得到“无效文件”。现在,我的照片是.JPG
。我更改了代码以包含JPG
字符串。我检查并编辑了upload_max_filesize
,php.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";
}