How to add http:// to the url if there isn't a http:// or https:// or ftp:// ?

Example:

addhttp("google.com"); // http://google.com
addhttp("www.google.com"); // http://www.google.com
addhttp("google.com"); // http://google.com
addhttp("ftp://google.com"); // ftp://google.com
addhttp("https://google.com"); // https://google.com
addhttp("http://google.com"); // http://google.com
addhttp("rubbish"); // http://rubbish
link|improve this question

If you had, mozilla.org alone, how would you know if it should be, http, https or ftp? – Anthony Forloney May 4 '10 at 0:25
2  
@Anthony: he says he wants to add "http://" if there's no other protocol. – nickf May 4 '10 at 0:27
1  
@Anthony But when the user types the url without http:// or anything, do you expect it to be ftp:// or something? – Ryan May 4 '10 at 0:28
feedback

5 Answers

up vote 21 down vote accepted

A modified version of @nickf code:

function addhttp($url) {
    if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
        $url = "http://" . $url;
    }
    return $url;
}

Recognizes ftp://, ftps://, http:// and https:// in a case insensitive way.

link|improve this answer
Thanks Alix, the best & working version is yours :) – Ryan May 4 '10 at 0:42
@David: No problem, you're welcome. – Alix Axel May 4 '10 at 0:49
feedback

Simply check if there is a protocol (delineated by "://") and add "http://" if there isn't.

if (false === strpos($url, '://')) {
    $url = 'http://' . $url;
}
link|improve this answer
2  
+1 for being the most readable solution of all. The programmer's intent is quickly understood at a glance. – Rosdi Kasim May 4 '10 at 0:51
feedback

Scan the string for ://, if it does not have it, prepend http:// to the string.., everything else just use the string as is.

This will work unless you have rubbish input string.

link|improve this answer
i'de prefer a regex version :) – Ryan May 4 '10 at 0:34
1  
Don't be too quick on regex. Regex tends to be hard to read and it could introduce another problem/bug once the problem grows. – Rosdi Kasim May 4 '10 at 0:49
feedback

nickf solution modified:

function addhttp($url) {
    if (!preg_match("@^https?://@i", $url) && !preg_match("@^ftps?://@i", $url)) {
        $url = "http://" . $url;
    }
    return $url;
}
link|improve this answer
I believe ftps:// is also valid. – Alix Axel May 4 '10 at 0:31
@Alix: wasn't aware of that. Edited. – kamasheto May 4 '10 at 0:33
feedback

Try this. Not watertight*, but might be good enough:

function addhttp($url) {
    if (!preg_match("@^[hf]tt?ps?://@", $url)) {
        $url = "http://" . $url;
    }
    return $url;
}

*: that is, prefixes like "fttps://" are treated as valid.

link|improve this answer
2  
This would match (ergo return true and if would evaluate to false) weird combinations.. like htps, fttps, fttp, htp, I guess. – kamasheto May 4 '10 at 0:28
@mahmoudsakr you're right – Ryan May 4 '10 at 0:29
@mahmoudsakr - in either case, you're not going to get a valid url (eg: http://fttps://google.com), so I wouldn't be too worried about it. – nickf May 4 '10 at 0:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.