Ver Mensaje Individual
  #12 (permalink)  
Antiguo 10/10/2012, 10:42
rbczgz
 
Fecha de Ingreso: noviembre-2003
Ubicación: Zaragoza, España
Mensajes: 1.257
Antigüedad: 21 años
Puntos: 154
Respuesta: Mostrar entidades html

Hola,

Por si te sirve, yo tengo hecha esta función que, en teoría hace lo que tú quieres:

Código PHP:
Ver original
  1. <?php
  2. function CambiaHTML($texto) {
  3.  
  4. $texto = str_replace('á','&aacute;',$texto);
  5. $texto = str_replace('é','&eacute;',$texto);
  6. $texto = str_replace('í','&iacute;',$texto);
  7. $texto = str_replace('ó','&oacute;',$texto);
  8. $texto = str_replace('ú','&uacute;',$texto);
  9. $texto = str_replace('ñ','&ntilde;',$texto);
  10. $texto = str_replace('Á','&Aacute;',$texto);
  11. $texto = str_replace('É','&Eacute;',$texto);
  12. $texto = str_replace('Í','&Iacute;',$texto);
  13. $texto = str_replace('Ó','&Oacute;',$texto);
  14. $texto = str_replace('Ú','&Uacute;',$texto);
  15. $texto = str_replace('Ñ','&Ntilde;',$texto);
  16.  
  17. return $texto;
  18.  
  19. }
  20.  
  21. ?>

Espero que te ayude.

.