3v4l.org

run code in 300+ PHP versions simultaneously
<?php function repeatInt(int $value, int $min, int $max) { $validValueNum = $max - $min + 1; $value = ($value + $min) % $validValueNum; return $value; } echo 'Test 2 to 5' . PHP_EOL; echo '---------------------------------' . PHP_EOL; foreach (range(-10, 10) as $i) { echo $i . ' → ' . repeatInt($i, 2, 5) . PHP_EOL; } echo PHP_EOL; echo 'Test 3 to 8' . PHP_EOL; echo '---------------------------------' . PHP_EOL; foreach (range(-10, 10) as $i) { echo $i . ' → ' . repeatInt($i, 3, 8) . PHP_EOL; } echo PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
Test 2 to 5 --------------------------------- -10 → 0 -9 → -3 -8 → -2 -7 → -1 -6 → 0 -5 → -3 -4 → -2 -3 → -1 -2 → 0 -1 → 1 0 → 2 1 → 3 2 → 0 3 → 1 4 → 2 5 → 3 6 → 0 7 → 1 8 → 2 9 → 3 10 → 0 Test 3 to 8 --------------------------------- -10 → -1 -9 → 0 -8 → -5 -7 → -4 -6 → -3 -5 → -2 -4 → -1 -3 → 0 -2 → 1 -1 → 2 0 → 3 1 → 4 2 → 5 3 → 0 4 → 1 5 → 2 6 → 3 7 → 4 8 → 5 9 → 0 10 → 1

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:
57.53 ms | 402 KiB | 8 Q