3v4l.org

run code in 300+ PHP versions simultaneously
<?php function bubble_sort($arr) { $size = count($arr); for ($i=0; $i<$size; $i++) { for ($j=0; $j<$size-1-$i; $j++) { if ($arr[$j+1] < $arr[$j]) { swap($arr, $j, $j+1); } } } return $arr; } function swap(&$arr, $a, $b) { $tmp = $arr[$a]; $arr[$a] = $arr[$b]; $arr[$b] = $tmp; } $unsortedObjectArray = [1,3,5,77,37,523,243,546,14,3,4,6,5]; bubble_sort($unsortedObjectArray);
Output for git.master, git.master_jit, rfc.property-hooks

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