$array = [ [ 'Name' => 'Product 1', 'Quantity' => 0, 'Price' => 70 ],
[ 'Name' => 'Product 2', 'Quantity' => 2, 'Price' => 100 ],
[ 'Name' => 'Product 3', 'Quantity' => 2, 'Price' => 120 ] ];
echo min( array_column( $array, 'Price' ) ); // 70
它确实给我min
价格,但我也想检查数量,在这种情况下100
将是最低的。
在没有循环的情况下,有没有一种优雅的方法可以做到这一点?
答案 0 :(得分:1)
array_filter 救援!
在检查min之前,请从数组中删除Quantity设置为0的元素。
echo min( array_column( array_filter($array,function($v) {
return $v["Quantity"] > 0; }), 'Price' ) );
使其更具可读性
$filtered=array_filter($array,function($v) { return $v["Quantity"] > 0; });
echo min( array_column( $filtered, 'Price' ) );
<强> Fiddle 强>
没有所有关闭的老派版本
foreach($array as $v)
{
if($v["Quantity"]>0 && (!$min || $v["Price"]<$min))
$min=$v["Price"];
}
<强> Fiddle 强>
答案 1 :(得分:0)
您需要使用array_filter()过滤掉数量为0的数组索引。
$filtered_array = array_filter($array, function($v) {
return $v['Quantity'];
});
echo min( array_column( $filtered_array, 'Price' ) );
答案 2 :(得分:0)
$array = [[ 'Name' => 'Product 1', 'Quantity' => 0, 'Price' => 70],
['Name' => 'Product 2', 'Quantity' => 2, 'Price' => 100],
['Name' => 'Product 3', 'Quantity' => 2, 'Price' => 120]];
$price=array();
for($i=0; $i<count($array);$i++){
$price[$i]=$array[$i]['Price'];
}
echo min($price); //70