Example
The code is as follows
print_r(getimagesize('http://www.45it.com/templets/default/images/logo.gif'));
The output result is:
Array
(
[0] => 550
[1] => 190
[2] => 3
[3] => width="550" height="190"
[bits] => 8
[mime] => image/png
)
http://www.bkjia.com/PHPjc/371409.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/371409.htmlTechArticleThe example code is as follows print_r(getimagesize('http://www.45it.com/templets/default/images/ logo.gif')); The output result is: Array ( [0] = 550 [1] = 190 [2] = 3 [3] = width=550 height=190...