Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPでカウントゼロ形式のmin()関数を使用して最小値を見つけたいのですが、ゼロで取得できます。ゼロなしでどのように見つけることができますか?
$a = 0; $b = 3; $c= 4, $d = 8; $minvalue = min($a,$b,$c,$d);
私が望む期待される結果は 3 ですが、結果は 0 になります。
ゼロを無視するにはどうすればよいですか。ゼロのない結果が必要です。これを行うのを手伝ってください。前もって感謝します
これを試して
function nonzero($a){ return ($a > 0); } min(array_filter($yournumbers,"nonzero"));