Ver Mensaje Individual
  #5 (permalink)  
Antiguo 29/08/2010, 17:08
Avatar de david_M_G
david_M_G
 
Fecha de Ingreso: febrero-2005
Mensajes: 938
Antigüedad: 19 años, 3 meses
Puntos: 20
Respuesta: que reconozca un link

Pues añadiendo una S...

Código PHP:
function hacer_links($texto) {

  
$texto eregi_replace('(((f|ht){1}tps://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)',

    
'<a href="\\1">\\1</a>'$texto);

  
$texto eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)',

    
'<a href="\\1">\\1</a>'$texto);

  
$texto eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&//=]+)',

    
'\\1<a href="http://\\2">\\2</a>'$texto);

  
$texto eregi_replace('([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})',

    
'<a href="mailto:\\1">\\1</a>'$texto);

return 
$texto;