Usage
Syntax: array.sortascending()
Explanation
Will sort an array of text ascendingly.
Example
function onCreated() { temp.array = {"c", "a", "b"}; temp.array.sortascending(); echo(temp.array); }
... Will output {"a", "b", "c"} in RC when on the serverside, or in your F2 menu when on the clientside.
Categories
CategoryObjectFunction
CategoryFunctionClientside
CategoryFunctionServerside
There are no comments on this page. [Add comment]