Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/09/2003, 13:45
fran86
 
Fecha de Ingreso: agosto-2002
Ubicación: Colón - Entre Rios - Argentina
Mensajes: 647
Antigüedad: 21 años, 8 meses
Puntos: 8
desde php 4.3 podés usar la funcion html_entity_decode(), luego aplicas la funcion de cluster, y despues la conviertes a html de nuevo con htmlentities().

Esa es una idea...

en caso que uses <php 4.3 te transcribo esto del manual:
Código PHP:
// For users prior to PHP 4.3.0 you may do this:
function unhtmlentities ($string)
{
    
$trans_tbl get_html_translation_table (HTML_ENTITIES);
    
$trans_tbl array_flip ($trans_tbl);
    return 
strtr ($string$trans_tbl);

Saludos