Jump to content

Checking if url exists?


EchoFool

Recommended Posts

Hi,

 

I am wondering if there is a way in php to check if an url uploaded by a user is valid... and that the url points to an image only.

 

Say for example i want to show a image hosted on photobucket, the url given would be http: etc etc .jpg

 

But firstly i need php to know does that url point to anything, then secondly does it point to an image.

Was wondering if php can check this kind of thing, is there a crude example of hows its done, then i can work off it to manipulate it to work into my site..

 

Hope you can help.

Link to comment
https://forums.phpfreaks.com/topic/157701-checking-if-url-exists/
Share on other sites

<?php
$hosts = gethostbynamel('www.example.com');
print_r($hosts);
?>

Returns the IPv4 address or a string containing the unmodified hostname on failure.

 

theres also..

 

gethostbynamel

gethostbyaddr

gethostbyname

 

http://us2.php.net/manual-lookup.php?pattern=host

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.