get image size php

Solutions on MaxInterview for get image size php by the best coders in the world

showing results for - "get image size php"
Vanessa
13 Apr 2017
1$image_size = $_FILES["inputfilename"]["size"];
2/*Not From Form*/
3$img_size = getimagesize("imagepath"); // returns an array that is filled with info
4print_r($img_size);
5