6
I wonder how to remove comment tags from files TXT with PHP, someone could help me?
I’m having this problem in reading txt files that are displaying comments.
PHP code:
function extrairDadosNotificacao($NomeArquivo){
$arquivo = fopen($NomeArquivo, 'r');
$dados = array();
while (($buffer = fgets($arquivo, 4096)) !== false) {
$dados[] = $buffer;
}
return $dados;
}
$test = extrairDadosNotificacao("test.txt");
echo "<pre>";
var_dump($test);
txt file :
//TEST
//TEST
'test' 1 1 1 1 1 1 1
I changed, in case I wanted to know how to remove the /TEST comments
– João Vitor Pereira