Created
June 13, 2018 16:18
-
-
Save kopiro/fb09e9a441bbd2c2e3e22d0fc24b3b4a to your computer and use it in GitHub Desktop.
PHP Number Generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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