Complete programme of Bubble sorting in php
<?php
function bubbleSort($array) {
$length=count($array);
for ($i=$length;$i>0;$i--){
$swape=true;
for ($j=0;$j<$i-1;$j++){
if ($array[$j]>$array[$j+1]){
$temp=$array[$j];
$array[$j]=$array[$j+1];
$array[$j+1]=$temp;
$swape=false;
}
}
if ($swape)break;
}
return $array;
}