Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/06/2014, 10:31
Avatar de hhs
hhs
Colaborador
 
Fecha de Ingreso: junio-2013
Ubicación: México
Mensajes: 2.995
Antigüedad: 10 años, 9 meses
Puntos: 379
Respuesta: php y escribir txt

una forma rápida pero no aconsejable:
Código PHP:
Ver original
  1. $file_data = "Nuevo texto\n";
  2. $file_data .= file_get_contents('archivo.txt');
  3. file_put_contents('archivo.txt', $file_data);
__________________
Saludos
About me
Laraveles
A class should have only one reason to change.