Lines Matching refs:sort
2 Test sort() function : usage variations - sort strings
10 /* Prototype : bool sort ( array &$array [, int $sort_flags] )
17 …* testing sort() by providing different string arrays for $array argument with following flag valu…
23 echo "*** Testing sort() : usage variations ***\n";
36 echo "\n-- Testing sort() by supplying various string arrays --\n";
38 // loop through to test sort() with different arrays
42 echo "- With Default sort flag -\n";
44 var_dump(sort($temp_array) ); // expecting : bool(true)
51 var_dump(sort($temp_array, $flag) ); // expecting : bool(true)
60 *** Testing sort() : usage variations ***
62 -- Testing sort() by supplying various string arrays --
65 - With Default sort flag -
157 - With Default sort flag -