Skip to content

Instantly share code, notes, and snippets.

@iamlucianojr
Created August 23, 2019 08:13
Show Gist options
  • Save iamlucianojr/b167d40b8641af08a4be1716b7ee0839 to your computer and use it in GitHub Desktop.
Save iamlucianojr/b167d40b8641af08a4be1716b7ee0839 to your computer and use it in GitHub Desktop.
Generators/yield PHP
function gen_one_to_three()
{
for ($i = 1; $i <= 3; $i++) {
// Note that $i is preserved between yields.
yield $i;
}
}
$generator = gen_one_to_three();
foreach ($generator as $value) {
echo "$value\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment