Possible Duplicate:
Super fast getimagesize in php
I want to get the image sizes of all the images within webpages (hence all img tags)
The problem is PHP s getimagesize()
function is so inefficient.
I tried running this...
for($i=0;$i<55;$i++){
getimagesize( http://www.blackcommentator.com/265/265_images/265_cartoon_do_something_now_bill_large.jpg );
}
完成这项工作需要很长时间。
我很想知道,任何人是否知道比<代码>getimagesize()更高效的替代办法,以便在一个使用PHP的网页上获取图像大小,而这个网页的图像一般是接收20-30个图像。