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); } for($i = 0; $i < $colCount; $i++) { $columnArr[$i] = bubbleSort(array_column($tempArr, $i)); } 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; } print_r(bSort($arr));
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Array to string conversion in /in/87vXM on line 24 Warning: Undefined variable $Array in /in/87vXM on line 24 Fatal error: Uncaught TypeError: array_column(): Argument #1 ($array) must be of type array, null given in /in/87vXM:24 Stack trace: #0 /in/87vXM(24): array_column(NULL, 0) #1 /in/87vXM(53): bubbleSortRowCol(Array) #2 /in/87vXM(58): bSort(Array) #3 {main} thrown in /in/87vXM on line 24
Process exited with code 255.

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.29 ms | 402 KiB | 8 Q