Skip to content

Instantly share code, notes, and snippets.

@igor822
Last active December 21, 2015 12:59
Show Gist options
  • Save igor822/6309573 to your computer and use it in GitHub Desktop.
Save igor822/6309573 to your computer and use it in GitHub Desktop.
Sequência Fibonacci
<?php
function fibb($limit = 1, $first_number = 0, $second_number = 1) {
if ($limit <= 0) {
exit('End');
}
echo $second_number."\n";
fibb($limit-1, $second_number, ($first_number + $second_number));
}
fibb(10); // 1 1 2 3 5 8 13 21 34 55 End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment