3v4l.org

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

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.01 ms | 401 KiB | 8 Q