Skip to content

Instantly share code, notes, and snippets.

@design-innovations
Last active September 15, 2020 01:02
Show Gist options
  • Save design-innovations/6ea2e51c0542c3fc43fee33d30dc882e to your computer and use it in GitHub Desktop.
Save design-innovations/6ea2e51c0542c3fc43fee33d30dc882e to your computer and use it in GitHub Desktop.
PHP - Generator function
<?php
function xrange($start, $limit, $step = 1) {
for ($i = $start; $i <= $limit; $i += $step) {
yield $i;
}
}
foreach (xrange(1, 9, 2) as $number) {
echo "$number ";
}
// This prints: 1 3 5 7 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment