Skip to content

Instantly share code, notes, and snippets.

@Chemaclass
Last active September 23, 2019 12:08
Show Gist options
  • Select an option

  • Save Chemaclass/10cf6998ddf5f2d3ed4264ff5f27410b to your computer and use it in GitHub Desktop.

Select an option

Save Chemaclass/10cf6998ddf5f2d3ed4264ff5f27410b to your computer and use it in GitHub Desktop.
Docu - Generator delegation
<?php
function gen()
{
yield 1;
yield 2;
yield from gen2();
}
function gen2()
{
yield 3;
yield 4;
}
foreach (gen() as $val) {
echo $val, " ";
}
// outputs: 1 2 3 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment