Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Last active December 18, 2015 20:29
Show Gist options
  • Save boo1ean/5840882 to your computer and use it in GitHub Desktop.
Save boo1ean/5840882 to your computer and use it in GitHub Desktop.
<?php
function read($filename) {
$file = fopen($filename, 'r');
while ($line = fgets($file)) {
yield $line;
}
}
$iterator = read(__FILE__);
foreach ($iterator as $line) {
echo $line . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment