1
I want to delete just one phrase from everywhere it appears in the file, has some function that does this, something that can help me or that is impossible. I tried, but all I got was a headache.
1
I want to delete just one phrase from everywhere it appears in the file, has some function that does this, something that can help me or that is impossible. I tried, but all I got was a headache.
6
$caminho = 'caminho/do/arquivo.txt';
$conteudo = file_get_contents($caminho);
file_put_contents($caminho, str_replace('trocar isto', 'por isto', $conteudo));
Deleting is exchanging for ''
.
Browser other questions tagged php
You are not signed in. Login or sign up in order to post.
What type of file is this? TXT?
– mcamara
I’m not using a format of my own, it’s a . Apr
– Leone Cerqueira
php opens this file type . Apr?
– user60252
not only opens but edits
– Leone Cerqueira