Skip to content

Instantly share code, notes, and snippets.

@arthurkushman
Last active May 5, 2019 07:45
Show Gist options
  • Save arthurkushman/1c5a4ade40279e12f1da0fcbbc1f0925 to your computer and use it in GitHub Desktop.
Save arthurkushman/1c5a4ade40279e12f1da0fcbbc1f0925 to your computer and use it in GitHub Desktop.
<?php
function fib(int $n)
{
return number_format(round(1.618 ** $n / 2.236));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment