我正在使用一个插件来裁剪图像。

如果您在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";
        }


提前致谢

最佳答案

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

10-06 15:20