Jump to content

script to check if input is valid url


johnsmith153

Recommended Posts

I need a script that checks if a string is in fact a valid url

 

I suppose anything starting http:// or www. should be o.k,

 

also, there are some addresses like: subdomain.site.com etc

 

and if doing for whole domain, please remember .co.uk urls (a lot of time I see script that works on .com but not .co.uk)

Link to comment
https://forums.phpfreaks.com/topic/126138-script-to-check-if-input-is-valid-url/
Share on other sites

I see this link being referred to in other forums. It explains things thoroughly. I haven't actually tested this, as I don't even use regex for this sort of thing (I'll link to what I use in a second). But the link includes a table of the lexical tokens section of RFC822 and more. It's thorough yet complex  ;)

 

The method I use involves the filter_var() function. In either case, have a look here to see it's simplicity. It is the last code snippet prior to the comment page that I am pointing attention to.

 

Hope this helps..

 

Cheers,

 

NRG

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.