Skip to content

Instantly share code, notes, and snippets.

@PedroEscudero
Created February 19, 2020 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PedroEscudero/638e98429e525c529db40fd21441fd0b to your computer and use it in GitHub Desktop.
Save PedroEscudero/638e98429e525c529db40fd21441fd0b to your computer and use it in GitHub Desktop.
<?php
function fibonacci($n){
$start = microtime(true);
if ($n < 2){
$f = 1;
}else{
$f = fibonacci($n - 2) + fibonacci($n - 1);
}
return microtime(true) - $start;
}
echo fibonacci(22);
echo "\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment