<?php
$string = "http://giphy.com/static/img/homepage_banners/snl-leslie.gif";
$find_images = preg_match("/(https?:\/\/\S+\.(?:jpg|png|jpeg|gif))\s+/", $string, $matches) ? $matches[1] : "";
if(@is_array(getimagesize($find_images))) {
// Check if image exists
echo $find_images;
}
?>
I try to echo image link but my regex not find link of image. ??? can someone help me? thanks in advance