get image size before upload image php

前端 未结 4 1993
余生分开走
余生分开走 2021-01-25 08:36

I want to know the image size in mb but before ulpload do the same. I have:

$errors =       array();
$image =        $_FILES[\'image\'][\'name\'];
$file_tmp =            


        
4条回答
  •  死守一世寂寞
    2021-01-25 09:29

    Before upload you can check like so:

    $file_tmp = $_FILES['image']['tmp_name'];
    $size = filesize($file_tmp);
    

    But do you realize you are expecting the image to be less than a kilobyte in your code example?

提交回复
热议问题