Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created May 24, 2015 04:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asathoor/58f41f8e6a3f17f65ff3 to your computer and use it in GitHub Desktop.
Save asathoor/58f41f8e6a3f17f65ff3 to your computer and use it in GitHub Desktop.
Read a textfile, explode to array ...
<?php
class AQCreader {
function AQCPostsNumberOf() {
$laes = file_get_contents('AQC-Index-2010.txt');
$AQCarray = explode("\n", $laes);
echo (count( $AQCarray ) + 1); // number of lines in file
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment