Check picture file type and size before file upload in php

后端 未结 7 1583
走了就别回头了
走了就别回头了 2020-12-09 13:41

I have the following code:

$filecheck = basename($_FILES[\'imagefile\'][\'name\']);
  $ext = substr($filecheck, strrpos($filecheck, \'.\') + 1);
  if (($ext          


        
7条回答
  •  醉酒成梦
    2020-12-09 14:32

    Php is a server side scripting language and if the pictures are at client side, you can't check their size via php before upload.

提交回复
热议问题