3v4l.org

run code in 300+ PHP versions simultaneously
<?php function fibonacci($n,$first = 0,$second = 1) { $fib = array($first,$second); for($i=1;$i<$n;$i++) { $fib[] = $fib[$i]+$fib[$i-1]; } return $fib; } echo "<pre>"; print_r(fibonacci(50));
Output for git.master, git.master_jit, rfc.property-hooks
<pre>Array ( [0] => 0 [1] => 1 [2] => 1 [3] => 2 [4] => 3 [5] => 5 [6] => 8 [7] => 13 [8] => 21 [9] => 34 [10] => 55 [11] => 89 [12] => 144 [13] => 233 [14] => 377 [15] => 610 [16] => 987 [17] => 1597 [18] => 2584 [19] => 4181 [20] => 6765 [21] => 10946 [22] => 17711 [23] => 28657 [24] => 46368 [25] => 75025 [26] => 121393 [27] => 196418 [28] => 317811 [29] => 514229 [30] => 832040 [31] => 1346269 [32] => 2178309 [33] => 3524578 [34] => 5702887 [35] => 9227465 [36] => 14930352 [37] => 24157817 [38] => 39088169 [39] => 63245986 [40] => 102334155 [41] => 165580141 [42] => 267914296 [43] => 433494437 [44] => 701408733 [45] => 1134903170 [46] => 1836311903 [47] => 2971215073 [48] => 4807526976 [49] => 7778742049 [50] => 12586269025 )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
33.56 ms | 403 KiB | 8 Q