Skip to content

Instantly share code, notes, and snippets.

@arto-heino
Created March 4, 2019 13:10
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 arto-heino/51f0800a591d23396f27378cd844da84 to your computer and use it in GitHub Desktop.
Save arto-heino/51f0800a591d23396f27378cd844da84 to your computer and use it in GitHub Desktop.
public function composeData($file){
$f = fopen($file, 'r');
while(!feof($f))
{
$line = fgets($f);
if(empty($line))
return;
$lineData = explode('|', $line);
//Do lots of stuff here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment