Guest User

Untitled

a guest
May 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $nombre_temp="archivo_tmp.txt";
  3. $nombre_orig="archivo.txt";
  4. $nombre_new="archivo_new.txt";
  5.  
  6. $cadena_nueva="prueba de linea 0004\r\n";
  7. $gestor = fopen($nombre_temp, "w");
  8.         //fseek($gestor, 0, SEEK_SET); //Mueve el puntero al principio del fichero
  9.         fwrite($gestor, $cadena_nueva);  
  10.         fclose($gestor);
  11.  
  12.  
  13.  
  14. $comando="cat $nombre_temp $nombre_orig > $nombre_new";
  15. $comando="copy $nombre_temp+$nombre_orig $nombre_new";
  16. exec($comando);    
  17. ?>
Add Comment
Please, Sign In to add comment