Snippet. PHP. Find, if Image Exists on Remote ServerThis PHP snippet finds, if an image exists on remote server.
if (@getimagesize($url_image) === false) {
echo "Image DOES NOT exist";
}
Do not use file_exists or fopen. There is connection timeout problem. Updated on: 01 Dec 2025 |
|
|