Skip to content

Instantly share code, notes, and snippets.

@helisoncruz
Created April 5, 2015 17:23
Show Gist options
  • Save helisoncruz/23e3e4261dfae117d6db to your computer and use it in GitHub Desktop.
Save helisoncruz/23e3e4261dfae117d6db to your computer and use it in GitHub Desktop.
Ler TXT
$arquivo = 'profissoes_lista.txt';
$ponteiro = fopen ($arquivo,"r");
while (!feof ($ponteiro)) {
//LÊ UMA LINHA DO ARQUIVO
$linha = fgets($ponteiro,4096);
$linha = utf8_encode($linha);
$linha = str_replace('ÿþ','',$linha);
$linha = explode(',',$linha);
if($linha != ' '){
$dados = array(
'cod'=>$linha['0'],
'profissao'=>$linha['1'],
);
$conecta->inserir('profissoes',$dados);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment