Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created June 13, 2018 16:18
Show Gist options
  • Save kopiro/fb09e9a441bbd2c2e3e22d0fc24b3b4a to your computer and use it in GitHub Desktop.
Save kopiro/fb09e9a441bbd2c2e3e22d0fc24b3b4a to your computer and use it in GitHub Desktop.
PHP Number Generator
<?php
function autoIncrement($start = 0, $step = 1, $circle = -1, $repeat = 1) {
$i = $start;
while (true) {
for ($j = 0; $j < $repeat; $j++) yield $i;
$i += $step;
if ($i === $circle) $i = $start;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment