3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = 100; $end = 200; $step = 10; echo array_sum(range($start, $end, $step)); echo "\n---\n"; $factors = [2, 5]; $total = 0; for ($i = $start; $i <= $end; ++$i) { foreach ($factors as $f) { if ($i % $f !== 0) { continue 2; } } $total += $i; } echo $total;
Output for git.master_jit, git.master, rfc.property-hooks
1650 --- 1650

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.11 ms | 405 KiB | 5 Q