Porl123 Posted September 24, 2008 Share Posted September 24, 2008 Anybody know any functions or methods of verifying an image link? I've been using substr but there's been a few problems with that. Surely there's a more technical way where I can find the format. I've heard that you can use fopen but can't find how it works Any help is appreciated thanks Quote Link to comment https://forums.phpfreaks.com/topic/125636-image-link-verification/ Share on other sites More sharing options...
Maq Posted September 24, 2008 Share Posted September 24, 2008 Could you be more detailed on what you're trying to accomplish because there may be an easier solution. Quote Link to comment https://forums.phpfreaks.com/topic/125636-image-link-verification/#findComment-649556 Share on other sites More sharing options...
Porl123 Posted September 24, 2008 Author Share Posted September 24, 2008 I've been trying to make a function where I have it check the provided link for the format if(format == gif) ok = true; elseif(format == jpeg) ok = true else ok = false Something along those lines Quote Link to comment https://forums.phpfreaks.com/topic/125636-image-link-verification/#findComment-649559 Share on other sites More sharing options...
Porl123 Posted September 24, 2008 Author Share Posted September 24, 2008 Really what I need is just a way to find out the format of an image so I can verify it. I can do the rest my self :] I'm just wondering which would be the best way to do it Quote Link to comment https://forums.phpfreaks.com/topic/125636-image-link-verification/#findComment-649563 Share on other sites More sharing options...
Porl123 Posted September 24, 2008 Author Share Posted September 24, 2008 No ideas? =( Quote Link to comment https://forums.phpfreaks.com/topic/125636-image-link-verification/#findComment-649576 Share on other sites More sharing options...
DarkWater Posted September 24, 2008 Share Posted September 24, 2008 <?php $string = "foobar.gif"; $ext = strrchr($string, '.'); echo $ext; ?> Quote Link to comment https://forums.phpfreaks.com/topic/125636-image-link-verification/#findComment-649582 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.