Fou
Fou

Reputation: 916

Get image size in bytes to check for bad images

How do I get image size in bytes. This is for detecting bad image urls.

Example: I have two image links in my database

  1. im1.jpg
  2. im2.jpg

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

Answers (1)

Zbigniew
Zbigniew

Reputation: 27594

Use file_exists to check if file exists and use filesize to check file size ;)

Upvotes: 3

Related Questions