Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/02/2010, 17:32
Avatar de santris
santris
 
Fecha de Ingreso: agosto-2009
Ubicación: Sant Feliu de Llobregat
Mensajes: 955
Antigüedad: 14 años, 9 meses
Puntos: 66
Respuesta: Configuracion Tema(Tilde)

Mira esta función,

Código PHP:
  <?php   function convertir_especiales_html($str){
           if (!isset(
$GLOBALS["carateres_latinos"])){
              
$todas get_html_translation_table(HTML_ENTITIESENT_NOQUOTES);
              
$etiquetas get_html_translation_table(HTML_SPECIALCHARSENT_NOQUOTES);
              
$GLOBALS["carateres_latinos"] = array_diff($todas$etiquetas);
           }
        
$str strtr($str$GLOBALS["carateres_latinos"]);
     return 
$str;
    } 
?>
Saludos
__________________
Tu álbum de cromos online!!

Última edición por santris; 19/02/2010 a las 17:52