Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|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
4  
@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? – Jeff May 4 '10 at 0:28

8 Answers

up vote 53 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.

share|improve this answer
Thanks Alix, the best & working version is yours :) – Jeff May 4 '10 at 0:42
@David: No problem, you're welcome. – Alix Axel May 4 '10 at 0:49
Having compared addhttp and addscheme below, I've come to the conclusion that addscheme is better in terms of performance: $url = "www.google.com"; $init = microtime(true); for( $i = 1; $i < 100000; $i++ ) { addScheme( $url ); } echo microtime(true) - $init; echo "<BR>"; $init = microtime(true); for( $i = 1; $i < 100000; $i++ ) { addhttp( $url ); } echo microtime(true) - $init; – Luis Lobo Borobia May 13 at 19:56

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

if (false === strpos($url, '://')) {
    $url = 'http://' . $url;
}
share|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
1  
how about such links- magnet:?fh=sdfs... – holden321 Sep 14 '12 at 15:00

At the time of writing, none of the answers used a built-in function for this:

function addScheme($url, $scheme = 'http://')
{
    if (parse_url($url, PHP_URL_SCHEME) === null) {
        return $scheme . $url;
    }
    return $url;
}

echo addScheme('google.com'); // "http://google.com"
echo addScheme('https://google.com'); // "https://google.com"

See also: parse_url()

share|improve this answer

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.

share|improve this answer
i'de prefer a regex version :) – Jeff 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

nickf solution modified:

function addhttp($url) {
    if (!preg_match("@^https?://@i", $url) && !preg_match("@^ftps?://@i", $url)) {
        $url = "http://" . $url;
    }
    return $url;
}
share|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
<?php

if (!preg_match("/^(http|ftp):/", $_POST['url'])) {
   $_POST['url'] = 'http://'.$_POST['url'];
}
$url = $_POST['url'];

?>

this code will add http:// to the URL if it’s not there.

share|improve this answer

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.

share|improve this answer
3  
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 – Jeff 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

use the prep_url($url);

$url = prep_url($url);

if check if the http is exist nothing happen otherwise it add the http://

share|improve this answer

protected by Jack Apr 8 at 6:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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