I have an array with lots of elements like this:
$items[] = array($url, $pic, $price);
I need $items to be sorted after $price ascending. Is there a good function to do this?
I have an array with lots of elements like this:
$items[] = array($url, $pic, $price);
I need $items to be sorted after $price ascending. Is there a good function to do this?