My fibonacci function seems to hang infinitely if I give it anything higher than 1?
function fibonacci($n) { if ($n -lt 1 -or $n -eq 1) { return 1