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 Quote 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)) Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.