Detectar URL en texto y ponerlo como link

Función que busca una URL en un texto y la pone como enlace en HTML muy útil para comentarios.

function findReplaceURL($text){
 
// The Regular Expression filter
$reg_exUrl = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
 
// Check if there is a url in the text
if(preg_match($reg_exUrl, $text, $url)) {
 
       // make the urls hyper links
      return preg_replace($reg_exUrl, "<a href=".$url[0].">".$url[0]."</a> ", $text);
 
} else {
 
       // if no urls in the text just return the text
       return $text;
 
}
}

Un comentario sobre “Detectar URL en texto y ponerlo como link”

  1. Excelente, es lo que andaba buscando! Para probarlo dejo esto aquí:

    Subir Pics al servidor

    a{
    text-decoration: none;
    color: #3b5998;
    }
    a:hover{
    color: #3b0098;
    }

    Este texto se ha convertido en enlace:
    <?php
    $text = "Este texto es solo una prueba de que el siguiente texto:
    http://www.google.com ¡se a convertido en link con PHP!";
    //function findReplaceURL($text){
    // The Regular Expression filter
    $reg_exUrl = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
    // Check if there is a url in the text
    if (preg_match($reg_exUrl, $text, $url)){
    // make the urls hyper links
    echo preg_replace($reg_exUrl, "«.$url[0].» «,$text);
    }else{
    // if no urls in the text just return the text
    echo «».$text.»»;
    }
    //}
    ?>

Los comentarios están cerrados.