Найдите пример ниже:
function updateUrl($url) {
if (strpos($url, '://')=== false && strpos($url, 'www.')=== false) {
$url = 'http://www.' . $url;
}
else if(strpos($url, '://')=== false) {
$url = 'http://' . $url;
}
else if(strpos($url, 'www.')=== false) {
$url = str_replace('http://','http://www.',$url);
}
else {
$url = $url;
}
return $url;
}
$url = "http://example.com/path";
echo updateUrl($url);