Skip to content

Instantly share code, notes, and snippets.

@viniciusalonso
Last active September 2, 2019 00:43
Show Gist options
  • Save viniciusalonso/40c9a0a8b7c05619068483bc89626108 to your computer and use it in GitHub Desktop.
Save viniciusalonso/40c9a0a8b7c05619068483bc89626108 to your computer and use it in GitHub Desktop.
<?php
function xrange($start, $limit, $step = 1) {
if ($start <= $limit) {
for ($i = $start; $i <= $limit; $i += $step) {
yield $i;
}
} else {
for ($i = $start; $i >= $limit; $i += $step) {
yield $i;
}
}
}
// Source: https://www.php.net/manual/en/language.generators.overview.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment