/** Sort the entries by key.
*/
function ksort();
-
+
/** Sort the entries by values using user defined function.
*/
function uasort(mixed cmp_function);
/** Sort the entries by key using user defined function.
*/
function uksort(mixed cmp_function);
-
+
/** Sort the entries by values using "natural order" algorithm.
*/
function natsort();
/** Sort the entries by values using case insensitive "natural order" algorithm.
*/
function natcasesort();
-
+
/**
* @param $array new array or object
*/
/** Sort the entries by key.
*/
function ksort();
-
+
/** Sort the entries by values using user defined function.
*/
function uasort(mixed cmp_function);
/** Sort the entries by key using user defined function.
*/
function uksort(mixed cmp_function);
-
+
/** Sort the entries by values using "natural order" algorithm.
*/
function natsort();
/** Sort the entries by values using case insensitive "natural order" algorithm.
*/
function natcasesort();
-
+
/** @param $index offset to inspect
* @return whetehr offset $index esists
*/