图像文件大小以Php为单位

时间:2012-10-05 05:48:49

标签: php

我正在尝试获取图像的文件大小。如果我在5 MB大小的图像下方上传,则此功能正在正确计算图像大小。但是如果超出图像文件大小则不计算图像文件!

$ size = filesize($ _ FILES ['file'] ['tmp_name']);

我不明白问题是什么。

1 个答案:

答案 0 :(得分:0)

未经测试的代码

 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.
        callMyForm(); //bounce back to the just filled out form.
}
elseif(// continue on with processing of the page...