Skip to content

Instantly share code, notes, and snippets.

@MehmetGoekce
Created February 9, 2020 13:49
Show Gist options
  • Select an option

  • Save MehmetGoekce/c13e4943f0e959e9aa8d22067ed322c2 to your computer and use it in GitHub Desktop.

Select an option

Save MehmetGoekce/c13e4943f0e959e9aa8d22067ed322c2 to your computer and use it in GitHub Desktop.
generator sytnax
<?php
function generator() {
for ($i = 3; $i <= 5; $i++) {
yield $i;
}
}
$arr1 = [0, 1, 2, ...generator()];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment