我在一个变量中有这样的数据:
array(2) {
["fields"]=>
array(2){
...
}
["price"] => int(36)
}
array(2) {
["fields"]=>
array(2){
...
}
["price"] => int(25)
}
....
我需要按价格对这些数据进行排序。我可以使用usort()
函数,但我必须使用带有键和值的数组。如何从这些数据中创建一个数组?
我尝试使用array_fill()
,但结果只是第一个元素。
$item = Array("fields" => $arFields, "price" => $price_int); // this is data that I need to sort
$item1 = array_fill(0,15,$item);
我喜欢这样
function pricesort($a, $b)
{
if ($a["price"] == $b["price"]) {
return 0;
}
return ($a["price"] < $b["price"]) ? -1 : 1;
}
$sort = uasort($item, "pricesort");
我尝试了array_multisort,但它只用第一个值得到了相同的结果