3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr1 = [1, 2, 3, 8]; $arr2 = [1, 2, 4, 9, 10]; $arr3 = [1, 2, 5, 11, 12]; $arrs = [$arr1, $arr2, $arr3]; rsort($arrs); print_r($arrs);
Output for rfc.property-hooks, git.master, git.master_jit
Array ( [0] => Array ( [0] => 1 [1] => 2 [2] => 5 [3] => 11 [4] => 12 ) [1] => Array ( [0] => 1 [1] => 2 [2] => 4 [3] => 9 [4] => 10 ) [2] => Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 8 ) )

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:
56.05 ms | 2122 KiB | 4 Q