-1
Say hello to the boys, I’m needing a help, I want to remove a KEY inside a TXT file but I’m not getting.
Keys.txt:
aLZkGWPXTLVdpVl
w17AzQZIy22soy9
rAcEiWHwopYz2Pk
uKPhbc0Xok5a2aO
my code . php:
<?php
$texto = "w17AzQZIy22soy9";
$linha_n = $texto;
echo $linha_n;
//Ler o arquivo
$linhas = explode("\r\n", file_get_contents("youtube.txt"));
// Abre o arquivo e coloca o ponteiro no final
$arquivo = fopen('keys.txt','r+');
if ($arquivo) {
while(true) {
$linha = fgets($arquivo);
if ($linha==null) break;
// Busca o conteudo que vai ser alterado
if(preg_match("/$linha_n/", $linha)) {
$string =+ str_replace("$linha_n", "", $linha);
} else {
// Vai colocando tudo numa nova string
$string =+ $linha;
}
}
// Move o ponteiro para o inicio pois o ftruncate() nao fara isso
rewind($arquivo);
// Apagar todo o conteudo
ftruncate($arquivo, 0);
// reescreve o conteudo do arquivo
if (!fwrite($arquivo, $string)) die('Não foi possível atualizar o arquivo.');
echo 'Arquivo atualizado com sucesso';
fclose($arquivo);
}
?>
Could you guys help me out? Bs: I have already researched here in the community and in other forums and have not found the solution!
Important you [Dit] your question by reducing the code to a [mcve] problem with the solution attempt. To better enjoy the site, understand and avoid closures and negativities worth reading the Stack Overflow Survival Guide in English.
– Bacco