I have a txr file with several columns but I want to get only a specific value from the first one. So far I've been able to open the file and separate the values from the header.
<?php
error_reporting(0);
// $delimitador = "/[\t]/";
// Abre o Arquvio no Modo r (para leitura)
$arquivo = fopen ('bases-para-teste/10.txt', 'r');
if($arquivo){
// Lê o conteúdo do arquivo
$cabecalho = fgets($arquivo, 1024);
echo $cabecalho.'<br />';
while(!feof($arquivo))
{
//Mostra uma linha do arquivo
$linha = fgets($arquivo, 1024);
echo $linha.'<br />';
}
// Fecha arquivo aberto
fclose($arquivo);
}
I'd like to get the column name only. The file is as follows:
Nome Sobrenome Cidade
Wesley Ferreira Costa São Paulo
Wendel Ferreira Costa São Paulo