chocopi Posted August 17, 2007 Share Posted August 17, 2007 I am trying to find out what the regex is for links with images eg. http://www.yahoo.com/yahooimage.gif I have the regex for a normal link but I can't seem to figure out how to get the ending on it. This is the code I have so far which does not work: if(eregi("^(http|https)+(:\/\/)+[a-z0-9_-]+\.+[a-z0-9_-\/]+[\.gif|\.jpg|\.jpeg|\.png]",$var)) The link code I used before i changed it was this: if(eregi("^(http|https)+(:\/\/)+[a-z0-9_-]+\.+[a-z0-9_-]",$url) Many thanks ~ Chocopi Link to comment https://forums.phpfreaks.com/topic/65503-solved-regex-for-link-with-image/ Share on other sites More sharing options...
sasa Posted August 17, 2007 Share Posted August 17, 2007 try if(eregi("^(http|https):\/\/.+(\.gif|\.jpg|\.jpeg|\.png)$",$var)) Link to comment https://forums.phpfreaks.com/topic/65503-solved-regex-for-link-with-image/#findComment-327067 Share on other sites More sharing options...
chocopi Posted August 17, 2007 Author Share Posted August 17, 2007 Cheers Sasa that works great, i dont know much about regex but doesnt that check to make sure that starts with http:// or https:// and ends in .gif etc Anyways many thanks, ~ Chocopi Link to comment https://forums.phpfreaks.com/topic/65503-solved-regex-for-link-with-image/#findComment-327072 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.