3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = [ [15, 16, 8, 1], [2, 3, 4, 7], [9, 11, 19, 6] ]; function bubbleSortRowCol(&$arr) { $colCount = count($arr[0]); $rowCount = count($arr); $tempArr = []; $columnArr = []; foreach($arr as $key => $value) { $tempArr[$key] = bubbleSort($value); } var_dump($tempArr); echo PHP_EOL; for($i = 0; $i < $colCount; $i++) { $columnArr[$i] = bubbleSort(array_column($tempArr, $i)); } var_dump($columnArr); echo PHP_EOL; for($i = 0; $i < $rowCount; $i++) { $tempArr[$i] = bubbleSort(array_column($columnArr, $i)); } $arr = $tempArr; } function bubbleSort($arr) { $n = sizeof($arr); for ($i = 1; $i < $n; $i++) { $flag = false; for ($j = $n - 1; $j >= $i; $j--) { if($arr[$j-1] > $arr[$j]) { $tmp = $arr[$j - 1]; $arr[$j - 1] = $arr[$j]; $arr[$j] = $tmp; $flag = true; } } if (!$flag) { break; } } return $arr; } function bSort($arr) { bubbleSortRowCol($arr); return $arr; } bSort($arr);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> array(4) { [0]=> int(1) [1]=> int(8) [2]=> int(15) [3]=> int(16) } [1]=> array(4) { [0]=> int(2) [1]=> int(3) [2]=> int(4) [3]=> int(7) } [2]=> array(4) { [0]=> int(6) [1]=> int(9) [2]=> int(11) [3]=> int(19) } } array(4) { [0]=> array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(6) } [1]=> array(3) { [0]=> int(3) [1]=> int(8) [2]=> int(9) } [2]=> array(3) { [0]=> int(4) [1]=> int(11) [2]=> int(15) } [3]=> array(3) { [0]=> int(7) [1]=> int(16) [2]=> int(19) } }

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