Skip to content

Instantly share code, notes, and snippets.

@viniciusalonso
Created September 2, 2019 00:47
Show Gist options
  • Save viniciusalonso/6e7dc0449a837fd6a259135e0a59f420 to your computer and use it in GitHub Desktop.
Save viniciusalonso/6e7dc0449a837fd6a259135e0a59f420 to your computer and use it in GitHub Desktop.
<?php
foreach (range(1, 9, 2) as $number) {
echo "$number ";
}
foreach (xrange(1, 9, 2) as $number) {
echo "$number ";
}
// 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