Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/09/2017, 12:06
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Eliminar espacios repetidos y conservar saltos de linea

Prueba con:

Código PHP:
Ver original
  1. <?php
  2.  
  3. function trimInside($t){
  4. $t = trim($t);
  5.     while(strpos($t, "  ") !== false){
  6.     $t = str_replace("  ", " ", $t);
  7.     }
  8. return $t;
  9. }
  10.  
  11.  
  12. $file = "test.txt";
  13. $fo = fopen($file,"r");
  14. $fr = fread($fo,filesize($file));
  15. fclose($fo);
  16.  
  17.  
  18. ?>
  19. <textarea style="width:300px; height:300px;"><?php echo $fr; ?></textarea><br/>
  20. <textarea style="width:300px; height:300px;"><?php echo trimInside($fr); ?></textarea><br/>