I want to delete only one sentence from all places where it appears in the file, have some function that does this, something that can help me or this is impossible. I tried, but I only got a headache.
I want to delete only one sentence from all places where it appears in the file, have some function that does this, something that can help me or this is impossible. I tried, but I only got a headache.
$caminho = 'caminho/do/arquivo.txt';
$conteudo = file_get_contents($caminho);
file_put_contents($caminho, str_replace('trocar isto', 'por isto', $conteudo));