function hyperlink($texto) {
#Procura pelo protocolo http ou https://
$texto = preg_replace("/[a-zA-Z]+:\/\/([.]?[a-zA-Z0-9_\/-])*/", "\\0", $texto);
#Procura pelo dominio.extensao...
$texto = preg_replace("/(^| )(www([.]?[a-zA-Z0-9_\/-])*)/", "\\1\\2", $texto);
#Retorno
return "$texto";
}