$var = 'www.somesite.com';if(strpos($var, 'http://') !== 0 && strpos($var, 'https://') !== 0) { return 'http://' . $var;} else { return $var;}