Is there anyway for PHP to detect the filesize of a remote image?
getimagesize() will give the width, height and format, but I need the filesize(im mb/kb/ or something).
there is a filesize function... however, it will not work on remote files. you probably knew that... the only other way i can think of right now... would be to fsock the server, fget the file to your server then do the filesize function. after you have the data you could dump the file from your server... i am gonna keep looking though.