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, 2, 5) . PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
-10=4 -9=5 -8=2 -7=3 -6=4 -5=5 -4=2 -3=3 -2=4 -1=5 0=2 1=3 2=4 3=5 4=2 5=3

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