3v4l.org

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

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