Skip to content

Instantly share code, notes, and snippets.

@abhimanyu003
Created June 15, 2013 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save abhimanyu003/5789271 to your computer and use it in GitHub Desktop.
Save abhimanyu003/5789271 to your computer and use it in GitHub Desktop.
Fibonacci sequence
<?php
function fib($n)
{
if ($n < 2)
return $n;
else
return fib($n - 1) + fib($n - 2);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment