Skip to content

Instantly share code, notes, and snippets.

@pedropuppim
Last active October 9, 2017 17:18
Show Gist options
  • Save pedropuppim/14c300947f6cd5c00bed1b186e296789 to your computer and use it in GitHub Desktop.
Save pedropuppim/14c300947f6cd5c00bed1b186e296789 to your computer and use it in GitHub Desktop.
Contando numero de linhas de um arquivo txt em php
<?php
$file = new SplFileObject('cpf45.txt');
$file->seek(PHP_INT_MAX);
echo $file->key() + 1;
die;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment