Let's say i have an array of data,for example; $tasktimes = {0.6,1.2 ,0.3,1.0}. how can i sort this array from the smallest value to the biggest value? i mean like this,$tasktimes = {0.3,0.6,1.0,1.2}. does php have any function for this?
[man]sort/man