我一直在试验php的上传功能,我一直在w3school看这个教程。
http://www.w3schools.com/php/php_file_upload.asp
I installed this script on MYDOMAIN.com/New.html
<html>
<body>
<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>
</body>
</html>
然后我把这个片段放在MYDOMAIN.com/upload_file.php
上<?php
$allowedExts = array("jpg", "jpeg", "gif", "png");
$extension = end(explode(".", $_FILES["file"]["name"]));
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/png")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000)
&& in_array($extension, $allowedExts))
{
if ($_FILES["file"]["error"] > 0)
{
echo "Error: " . $_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 "Stored in: " . $_FILES["file"]["tmp_name"];
}
}
else
{
echo "Invalid file";
}
?>
现在很有可能我只是一个非常困惑的人,但我认为假设要做的是把我放入New.html文件的文件,如果是图像文件,将它上传到我的目录但它只是输出无效的文件我不知道该怎么做任何帮助是很希望很快收到回复谢谢
答案 0 :(得分:7)
您的脚本问题是您可能正在尝试上传超出限制的文件!你指定了一个非常低的max filesize!打印出你的$ _FILES var以获取有关错误的信息;)
但是,要将文件移动到您的文件夹,您仍然需要使用move_uploaded_file:
$allow = array("jpg", "jpeg", "gif", "png");
$todir = 'uploads/';
if ( !!$_FILES['file']['tmp_name'] ) // is the file uploaded yet?
{
$info = explode('.', strtolower( $_FILES['file']['name']) ); // whats the extension of the file
if ( in_array( end($info), $allow) ) // is this file allowed
{
if ( move_uploaded_file( $_FILES['file']['tmp_name'], $todir . basename($_FILES['file']['name'] ) ) )
{
// the file has been moved correctly
}
}
else
{
// error this file ext is not allowed
}
}
答案 1 :(得分:2)
上传图片的最佳方式我认为是复制图像并存储在文件夹中,然后将图像的新位置存储到数据库中。
移动文件我们可以使用move_uploaded_file函数
$oldpath = $_FILES['image']['tmp_name'];
$newpath ="new_folder_location/".$_FILES['image']['name'];
move_uploaded_file($oldpath, $newpath);
答案 2 :(得分:1)
您的验证码正在检查扩展名,默认类型和文件大小。
您可能正在上传扩展名中包含大写字符的文件。当您检查扩展程序时,检查区分大小写,.JPG
是有效的图像文件扩展名,因此您应该使检查区不敏感:
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/png")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000)
&& in_array(strtolower($extension), $allowedExts))
// ^ added strtolower()
如果这不是直接问题,则文件太大或具有错误的mime类型。要进行调试,请使用以下命令查看files数组:
print_r($_FILES);
答案 3 :(得分:1)
我会说问题在于,如果,那里有很多条件(也就是“无效文件”是其中的其他部分),试着简化它来追踪问题,乍一看我会说是因为大小检查:
&& ($_FILES["file"]["size"] < 20000)
大约20Kb,对于图像来说,如果你正在上传照片,试图提高一个值或者取出那个条件并查看脚本是否有效
答案 4 :(得分:0)
这是因为以下表达式的计算结果为false:
(($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/png")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000)
&& in_array($extension, $allowedExts)
这意味着
我的猜测是文件大小 - 大幅增加。将其更改为以下内容以允许最大10 MB的大小:
&& ($_FILES["file"]["size"] < 10485760)
查看问题的最佳方法是将此行添加到脚本的开头:
var_dump($_FILES);
答案 5 :(得分:0)
我同意Ivo的回答,但我认为你可以改变下一个 像这样的一段代码:
$typePicture = array('jpg','png','jpeg','gif');
// Allow certain file formats
if($typePicture[0] != "jpg" || $typePicture[1] != "png" || $typePicture[2] != "jpeg" || $typePicture[3] != "gif" )
{
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}