Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/08/2016, 14:44
__SDP__
 
Fecha de Ingreso: agosto-2010
Ubicación: santiago, CHILE
Mensajes: 564
Antigüedad: 13 años, 8 meses
Puntos: 9
Respuesta: Eliminar ultimo registro



Código PHP:
Ver original
  1. $file = fopen("archivo.txt", "a");
  2.  
  3. for ($i = 1; $i <= 5; $i++) {
  4.  
  5.     $eol = $i == 5 ? '' : PHP_EOL;
  6.  
  7.     fwrite($file,trim("linea $i").$eol);
  8. }
  9.  
  10. fclose($file);