Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- @Função: Contar quantas linhas tem em um arquivo de texto
- @Créditos: SuYaNw Dácio
- http://suyanwdacio.blogspot.com/
- */
- function ContarLinhas($arquivo)
- {
- $file = 0;
- if(file_exists($arquivo))$file = count(file($arquivo));
- return $file;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement