PHP文件上传部分上传错误

3

我在关于文件上传的问题上卡住了。我想要上传 JPG、JPEG 或 PNG 格式的图像到一个文件夹中。我在阅读一本书并跟着他们的例子进行操作,现在我的代码是这样的:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Upload an Image</title>
    <style type="text/css" title="text/css" media="all">
        .error {
            font-weight: bold;
            color: #C00;
        }
    </style>
</head>
<body>
<?php # Script 11.2 - upload_image.php

// Check if the form has been submitted:
if ($_SERVER['REQUEST_METHOD'] == 'POST') {

    // Check for an uploaded file:
    if (isset($_FILES['upload'])) {

        // Validate the type. Should be JPEG or PNG.
        $allowed = array ('image/pjpeg', 'image/jpeg', 'image/JPG', 'image/X-PNG', 'image/PNG', 'image/png', 'image/x-png');
        if (in_array($_FILES['upload']['type'], $allowed)) {

            // Move the file over.
            if (move_uploaded_file ($_FILES['upload']['tmp_name'], "upload/{$_FILES['upload']['name']}")) {
                echo '<p><em>The file has been uploaded!</em></p>';
            } // End of move... IF.

        } else { // Invalid type.
            echo '<p class="error">Please upload a JPEG or PNG image.</p>';
        }

    } // End of isset($_FILES['upload']) IF.

    // Check for an error:
    if ($_FILES['upload']['error'] > 0) {
        echo '<p class="error">The file could not be uploaded because: <strong>';

        // Print a message based upon the error.
        switch ($_FILES['upload']['error']) {
            case 1:
                print 'The file exceeds the upload_max_filesize setting in php.ini.';
                break;
            case 2:
                print 'The file exceeds the MAX_FILE_SIZE setting in the HTML form.';
                break;
            case 3:
                print 'The file was only partially uploaded.';
                break;
            case 4:
                print 'No file was uploaded.';
                break;
            case 6:
                print 'No temporary folder was available.';
                break;
            case 7:
                print 'Unable to write to the disk.';
                break;
            case 8:
                print 'File upload stopped.';
                break;
            default:
                print 'A system error occurred.';
                break;
        } // End of switch.

        print '</strong></p>';

    } // End of error IF.

    // Delete the file if it still exists:
    if (file_exists ($_FILES['upload']['tmp_name']) && is_file($_FILES['upload']['tmp_name']) ) {
        unlink ($_FILES['upload']['tmp_name']);
    }

} // End of the submitted conditional.
?>

<form enctype="multipart/form-data" action="upload_image.php" method="post">

    <input type="hidden" name="MAX_FILE_SIZE" value="524288" />

    <fieldset><legend>Select a JPEG or PNG image of 512KB or smaller to be uploaded:</legend>

        <p><b>File:</b> <input type="file" name="upload" /></p>

    </fieldset>
    <div align="center"><input type="submit" name="submit" value="Submit" /></div>

</form>
</body>
</html>

这很奇怪,因为我已经创建了上传文件夹并对其进行了相关权限设置。我可以完美地上传PNG文件,但是当我尝试上传JPG文件时,根据$errors数组输出,我不断收到“文件仅部分上传”的错误。所涉及的文件并不大,大小在60-80Kb左右。我是新手,只是想知道上面的代码是否存在明显的问题,导致出现此错误,还是服务器有问题?

我还配置了我的php.ini,并将file_uploads设置为开启状态。我正在Ubuntu上运行PHP 5.6和Nginx。

感谢任何帮助!谢谢!


如果PNG上传成功,JPEG应该没有任何问题。似乎服务器在处理图像大小时出现了问题。 - Javier Núñez
我同意,文件大小可能是问题所在。请检查使用其他JPG文件上传,您使用的那个可能已经损坏了。并尝试将此MIME类型添加到您的列表中 - “image/jp2”。 - Mateusz Kleinert
2个回答

1
这可能是因为in_array区分大小写。最好使用strtolower()将MIME类型转换为小写。
$allowed = array ('image/pjpeg', 'image/jpeg', 'image/jpg', 'image/x-png', 'image/png');
if (in_array(strtolower($_FILES['upload']['type']), $allowed)) {
    ...

0
<?php

 if($_FILES['upload']['name'] != ''){
     $allowed_ext = array("gif","jpg","jpeg","png","GIF","JPG","JPEG","PNG"); 
     $filename = $_FILES['upload']['name'];
     $ext = end(explode(".", $filename));
     if(!in_array($ext,$allowed_ext)){echo '<p class="error">Please upload a JPEG or PNG image.</p>';}
     else{
          $rand1 = time();
          $image_name = $rand1.'.'.$ext;            //for rename image name
          $path = "upload/".$image_name;            //for image path
          move_uploaded_file($_FILES["upload"]["tmp_name"], $path);
     }
}

?>


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接