gpt4 book ai didi

php - 获取最大值和最小值,如果值相同则只打印一个值,Laravel Blade

转载 作者:行者123 更新时间:2023-12-04 15:34:11 24 4
gpt4 key购买 nike

从数组中获取最大值和最小值,如果值相同则只打印一个值。错误:我正在获取 foreach 中的所有价格值例如,120 120 120 120 120 120 卢比

<?php 
$maxprice = $product_attributes->max('price');
$minprice = $product_attributes->min('price'); ?>
@foreach($product_attributes->sortBy('price') as $attribute)
@if($maxprice === $minprice )
{{ $attribute->price }}
@endif
@endforeach

最佳答案

如果您需要从集合中找到maxmin 值。

$max = $product_attributes->max('price');
$min = $product_attributes->min('price');

@foreach($product_attributes->sortBy('price') as $attribute)
@if($max === $min )
{{ $attribute->price }}
@endif
@endforeach

关于php - 获取最大值和最小值,如果值相同则只打印一个值,Laravel Blade,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60293411/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com