1

我正在使用插件来执行图像的裁剪。

如果你在http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop-v11/下载这个插件 ,你可以在下面看到这个,这是做什么的 $max_file*1048576

如果你看到 $max_file ,它是用 3 硬编码的,他们也提到了 MB。* 1048576 是做什么的。

if ($userfile_size > ($max_file*1048576)) {
            $error.= "Images must be under ".$max_file."MB in size";
        }

提前致谢

4

1 回答 1

5

1048576 (bytes) = 1MB所以 3 * 1048576 (bytes) = 3MB

于 2012-06-21T09:02:44.740 回答