Skip to content

Instantly share code, notes, and snippets.

@machouinard
Created January 21, 2016 19:33
Show Gist options
  • Save machouinard/00b64d0f0d4e736f0ffb to your computer and use it in GitHub Desktop.
Save machouinard/00b64d0f0d4e736f0ffb to your computer and use it in GitHub Desktop.
Fibonacci generator
function fib( $num ) {
$last = 0;
$current = 1;
yield $current;
while ($current < $num ) {
$current = $last + $current;
$last = $current - $last;
yield $current;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment