簡體   English   中英

PHP文件上傳部分上傳錯誤

[英]PHP File Upload Partial Upload Error

我被困在有關文件上傳的問題上。 我正在嘗試將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-80 Kb。 我是新手,只是想知道上面的代碼是否有任何明顯錯誤會導致此錯誤,或者它是否是服務器?

我還配置了我的php.ini,並且我已經設置了file_uploads。 我在Ubuntu上使用Nginx運行PHP 5.6。

任何幫助表示贊賞。 謝謝!

這可能是因為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)) {
    ...
<?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);
     }
}

?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM