Created
February 9, 2020 13:49
-
-
Save MehmetGoekce/c13e4943f0e959e9aa8d22067ed322c2 to your computer and use it in GitHub Desktop.
generator sytnax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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