$text = "Моя страница http://localhost/user/1 Переходите все сюда! http://localhost/user/1";
function replace_href($text)
{
$words = explode(' ', $text);
for ($i=0; $i < count($words); $i++)
{
if(strpos($words[$i], 'http://') !== false || strpos($words[$i], 'https://'))
{
$words[$i] = '<a href="'.$words[$i].'">'.$words[$i].'</a>';
}
@$new_text = $new_text.' '.$words[$i];
}
return @$new_text;
}
echo replace_href($text);