Skip to content

Instantly share code, notes, and snippets.

@zonuexe
Last active February 15, 2020 20:13
Show Gist options
  • Save zonuexe/b6fcc03a198931f622433525c5ad899d to your computer and use it in GitHub Desktop.
Save zonuexe/b6fcc03a198931f622433525c5ad899d to your computer and use it in GitHub Desktop.
ジェネレータで無限を手玉に取る修行 (2)
<?php
function fibonacci()
{
$i = 0;
$j = 1;
while (true) {
yield $i;
[$i, $j] = [$j, $i + $j];
}
}
var_dump(iterator_to_array(take(20, fibonacci())));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment