Skip to content

Instantly share code, notes, and snippets.

@natrod
Created June 9, 2020 16:31
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 natrod/985bf05efabd7a8e036e8287fc06268a to your computer and use it in GitHub Desktop.
Save natrod/985bf05efabd7a8e036e8287fc06268a to your computer and use it in GitHub Desktop.
//Read CSV file
$fileData = function($file) {
$file = fopen(__DIR__ .'/'. $file,'r');
if (!$file)
die('file does not exist or cannot be opened');
while (($line = fgets($file)) !== false) {
yield $line;
}
fclose($file);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment