bubble sorting using php

<?php /* bubble.php by detour@metalshell.com * * Generate random numbers then sort them. * * http://www.metalshell.com/ * */ $array_size = 250; // If you use v4.2.0 or lower uncomment this // srand((double)microtime()*1000000); // Generate $array_size random numbers to be sorted. for($x = 0; $x < $array_size; $x++) $ran[$x] = rand(0, 500); /* The bubble sort …