<?php error_reporting(-1); function fib($a) { if($a == 1) { return 0; } elseif($a == 2) { return 1; } else { return fib($a-1) + fib($a-2); } } $a = fib(10); echo "$a";
Standard input is empty
34
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!