3v4l.org

run code in 300+ PHP versions simultaneously
<?php for ($i = 0; $i < 20; ++$i) { echo str_pad($i, 2, '0', STR_PAD_LEFT) . ': '; if ($i % 3 === 0) { echo 'Fizz'; } if ($i % 5 === 0) { echo 'Buzz'; } echo "\n"; }
Output for git.master_jit, git.master, rfc.property-hooks
00: FizzBuzz 01: 02: 03: Fizz 04: 05: Buzz 06: Fizz 07: 08: 09: Fizz 10: Buzz 11: 12: Fizz 13: 14: 15: FizzBuzz 16: 17: 18: Fizz 19:

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