如何优雅地处理超过PHP的`post_max_size`的文件?

时间:2010-01-25 16:15:25

标签: php upload

我正在开发一个将文件附加到电子邮件的PHP表单,并尝试优雅地处理上传文件过大的情况。

我了解到php.ini中有两个设置会影响文件上传的最大大小:upload_max_filesizepost_max_size

如果文件的大小超过upload_max-filesize,PHP会将文件的大小返回为0.这很好;我可以检查一下。

但是如果它超过post_max_size,我的脚本会无声地失败并返回到空白表单。

有没有办法捕获此错误?

5 个答案:

答案 0 :(得分:52)

来自the documentation

  

如果发布数据的大小更大   比post_max_size, $ _ POST和   $ _FILES superglobals是空的。这个   可以以各种方式跟踪,例如,   通过将$ _GET变量传递给   处理数据的脚本,即< form   action =“edit.php?processed = 1”>,和   然后检查$ _GET ['processed']是否是   集。

所以不幸的是,它看起来不像PHP发送错误。因为它发送的是空的$ _POST数组,这就是为什么你的脚本会回到空白表单 - 它不认为它是一个POST。 (相当糟糕的设计决定恕我直言)

This commenter也有一个有趣的想法。

  

似乎更优雅的方式   post_max_size和。之间的比较   $ _ SERVER [ 'CONTENT_LENGTH']。请   请注意,后者不仅包括   上传文件的大小加上帖子数据   还有多部分序列。

答案 1 :(得分:40)

有一种方法可以捕获/处理超过最大邮件大小的文件,这是我的首选,因为它告诉最终用户发生了什么以及谁有错;)

if (empty($_FILES) && empty($_POST) &&
        isset($_SERVER['REQUEST_METHOD']) &&
        strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
    //catch file overload error...
    $postMax = ini_get('post_max_size'); //grab the size limits...
    echo "<p style=\"color: #F00;\">\nPlease note files larger than {$postMax} will result in this error!<br>Please be advised this is not a limitation in the CMS, This is a limitation of the hosting server.<br>For various reasons they limit the max size of uploaded files, if you have access to the php ini file you can fix this by changing the post_max_size setting.<br> If you can't then please ask your host to increase the size limits, or use the FTP uploaded form</p>"; // echo out error and solutions...
    addForm(); //bounce back to the just filled out form.
}
else {
    // continue on with processing of the page...
}

答案 2 :(得分:6)

我们遇到了SOAP请求的问题,其中检查$ _POST和$ _FILES的空白是否有效,因为它们在有效请求时也是空的。

因此我们实施了一项检查,比较了CONTENT_LENGTH和post_max_size。抛出的异常后来被我们注册的异常处理程序转换为XML-SOAP-FAULT。

private function checkPostSizeExceeded() {
    $maxPostSize = $this->iniGetBytes('post_max_size');

    if ($_SERVER['CONTENT_LENGTH'] > $maxPostSize) {
        throw new Exception(
            sprintf('Max post size exceeded! Got %s bytes, but limit is %s bytes.',
                $_SERVER['CONTENT_LENGTH'],
                $maxPostSize
            )
        );
    }
}

private function iniGetBytes($val)
{
    $val = trim(ini_get($val));
    if ($val != '') {
        $last = strtolower(
            $val{strlen($val) - 1}
        );
    } else {
        $last = '';
    }
    switch ($last) {
        // The 'G' modifier is available since PHP 5.1.0
        case 'g':
            $val *= 1024;
            // fall through
        case 'm':
            $val *= 1024;
            // fall through
        case 'k':
            $val *= 1024;
            // fall through
    }

    return $val;
}

答案 3 :(得分:4)

在@Matt McCormick和@AbdullahAJM的答案的基础上,这是一个PHP测试用例,检查测试中使用的变量是否已设置,然后检查$ _SERVER [&#39; CONTENT_LENGTH& #39;]超出了php_max_filesize设置:

            if (
                isset( $_SERVER['REQUEST_METHOD'] )      &&
                ($_SERVER['REQUEST_METHOD'] === 'POST' ) &&
                isset( $_SERVER['CONTENT_LENGTH'] )      &&
                ( empty( $_POST ) )
            ) {
                $max_post_size = ini_get('post_max_size');
                $content_length = $_SERVER['CONTENT_LENGTH'] / 1024 / 1024;
                if ($content_length > $max_post_size ) {
                    print "<div class='updated fade'>" .
                        sprintf(
                            __('It appears you tried to upload %d MiB of data but the PHP post_max_size is %d MiB.', 'csa-slplus'),
                            $content_length,
                            $max_post_size
                        ) .
                        '<br/>' .
                        __( 'Try increasing the post_max_size setting in your php.ini file.' , 'csa-slplus' ) .
                        '</div>';
                }
            }

答案 4 :(得分:1)

这是解决此问题的简单方法:

只需在代码开头调用“checkPostSizeExceeded”

function checkPostSizeExceeded() {
        if (isset($_SERVER['REQUEST_METHOD']) and $_SERVER['REQUEST_METHOD'] == 'POST' and
            isset($_SERVER['CONTENT_LENGTH']) and empty($_POST)//if is a post request and $_POST variable is empty(a symptom of "post max size error")
        ) {
            $max = get_ini_bytes('post_max_size');//get the limit of post size 
            $send = $_SERVER['CONTENT_LENGTH'];//get the sent post size

            if($max < $_SERVER['CONTENT_LENGTH'])//compare
                throw new Exception(
                    'Max size exceeded! Were sent ' . 
                        number_format($send/(1024*1024), 2) . 'MB, but ' . number_format($max/(1024*1024), 2) . 'MB is the application limit.'
                    );
        }
    }

请记住复制此辅助功能:

function get_ini_bytes($attr){
    $attr_value = trim(ini_get($attr));

    if ($attr_value != '') {
        $type_byte = strtolower(
            $attr_value{strlen($attr_value) - 1}
        );
    } else
        return $attr_value;

    switch ($type_byte) {
        case 'g': $attr_value *= 1024*1024*1024; break;
        case 'm': $attr_value *= 1024*1024; break;
        case 'k': $attr_value *= 1024; break;
    }

    return $attr_value;
}