check image is available on server php
if (file_exists('http://www.mydomain.com/images/'.$filename)) {
… }
check image is available on server php
if (file_exists('http://www.mydomain.com/images/'.$filename)) {
… }
validate if correct image url php
If you want to be absolutely sure, and your PHP is enabled for remote
connections, you can just use "getimagesize('url')"
function validImage($url) {
return stripos(getimagesize($url)['mime'], 'image') === 0;
}
$image = validImage('http://www.example.com/image.jpg');
If it returns an array, it is an image type recognized by PHP, even if the
image extension is not in the url (per your second link). You have to keep in
mind that this method will make a remote connection for each request, so
perhaps cache urls that you already probed in a database to lower connections.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us