Skip to content

Instantly share code, notes, and snippets.

@lloc
Last active March 23, 2018 10:54
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 lloc/b38b9edd55feabebce9c2b98d4f28cb3 to your computer and use it in GitHub Desktop.
Save lloc/b38b9edd55feabebce9c2b98d4f28cb3 to your computer and use it in GitHub Desktop.
<?php
function xrange( $start, $limit, $step = 1 ) {
for ( $i = $start; $i <= $limit; $i += $step ) {
yield $i;
}
}
/*
* An array is never created or returned
*/
foreach ( xrange( 1, 9, 2 ) as $i ) {
echo $i, PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment