Reputation: 916
How do I get image size in bytes. This is for detecting bad image urls.
Example: I have two image links in my database
but, only im1.jpg
is available in "img" folder.
I want to detect the bad image URLs, so I can remove them.
If there is any other way, please help.
Upvotes: 0
Views: 581
Reputation: 27594
Use file_exists to check if file exists and use filesize to check file size ;)
Upvotes: 3