nbr2004 Posted September 26, 2004 Report Share Posted September 26, 2004 Utilizando fopen, abrir um arquivo texto e grava-lo em outro lugar.....como eu faço isso? tem como? Quote Link to comment Share on other sites More sharing options...
0 Gladisson Posted September 26, 2004 Report Share Posted September 26, 2004 Por exemplo você quer pegar o conteúdo do 'arquivo1.txt' e criar outro arquivo ex 'arquivo2.txt' e colocar mesmo conteúdo do 'arquivo1.txt', é isso ? Quote Link to comment Share on other sites More sharing options...
0 Guest - nbr2004 - Posted September 26, 2004 Report Share Posted September 26, 2004 Isso mesmo Quote Link to comment Share on other sites More sharing options...
0 Gladisson Posted September 26, 2004 Report Share Posted September 26, 2004 <?// Aqui pega o conteúdo do 'arquivo1.txt'.$a = file("arquivo1.txt");$c=""; foreach ($a as $b){$c .=$b.'\n';}// Aqui cria e grava o conteúdo do 'arquivo1.txt'$a = fopen("arquivo2.txt","w"); fputs($a,$c); fclose($a);?> Obs: não testei, pode ser que alguma coisa possa dar errado! Quote Link to comment Share on other sites More sharing options...
Question
nbr2004
Utilizando fopen, abrir um arquivo texto e grava-lo em outro lugar.....como eu faço isso? tem como?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.