Skip to content

Instantly share code, notes, and snippets.

@tylerflint
Created October 15, 2011 15:51
Show Gist options
  • Save tylerflint/1289742 to your computer and use it in GitHub Desktop.
Save tylerflint/1289742 to your computer and use it in GitHub Desktop.
php fibbonaci
function fib( $n ) {
// PRE: $n >= 0
if( $n < 2 ) {
return $n;
} else {
return fib( $n-1 ) + fib( $n-2 );
}
}
for( $i=0; $i<5000; $i++ ) {
echo fib( $i )." - ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment