3v4l.org

run code in 300+ PHP versions simultaneously
<?php function fibs_under_100() { $output = array(0, 1); $i = 1; $j = 1; for (; $j < 100; ) { $last = $j; $j = $i + $j; $i = $last; $output[] = $last; } return $output; } var_dump(fibs_under_100());
Output for git.master, git.master_jit, rfc.property-hooks
array(12) { [0]=> int(0) [1]=> int(1) [2]=> int(1) [3]=> int(2) [4]=> int(3) [5]=> int(5) [6]=> int(8) [7]=> int(13) [8]=> int(21) [9]=> int(34) [10]=> int(55) [11]=> int(89) }

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:
49.55 ms | 401 KiB | 8 Q