3v4l.org

run code in 300+ PHP versions simultaneously
<?php function invChangeN($pattern, $inversion) { $junc = array_slice(['r', '3', '5', '7'], 0, count($pattern)); $pos = [ 'r' => [ 1, 7, 14], '3' => [-3, 5, 14], '5' => [ 3, 5, 10], '7' => [-1, 7, 10] ]; $inversion -= 2; $modScale = []; foreach ($pattern as $p => $f) { $p += ($pos[$f][0]*pow($inversion,2) + $pos[$f][1]*$inversion + $pos[$f][2])/2; $j = $junc[(array_search($f, $junc)+$inversion+2)%count($junc)]; $modScale[$p] = $j; } return $modScale; } var_dump(invChangeN([1=>"r",28=>"5",77=>"3"], 1));
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [5]=> string(1) "3" [32]=> string(1) "r" [80]=> string(1) "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:
43.28 ms | 401 KiB | 8 Q