Skip to content

Instantly share code, notes, and snippets.

@max107
Created February 8, 2015 12:35
Show Gist options
  • Save max107/8db8a1e5acd2aacb70d6 to your computer and use it in GitHub Desktop.
Save max107/8db8a1e5acd2aacb70d6 to your computer and use it in GitHub Desktop.
<?php
function main() {
$data = [1 => 1, 2 => 2, 3 => 3];
foreach($data as $key => $value) {
yield $key, $value;
}
}
foreach(main() as $key => $value) {
echo $key, $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment