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.
私は2つの整数を持っています。どれが最小値であるかを知り、この値を取得する必要があります。それを行うためのきれいな方法(1つの機能?)はありますか?今、私はこのようにしています:
$foo = 5; $bar = 7; $min = min($foo, $bar); if($min == $foo) { ... } else { ... }
min()低い値で作業する必要がある場合に使用します。
min()
$min = min($foo, $bar); print "min: $min";
if単純に比較したい場合は、定期的に使用してください
if
if ($foo <= $bar) { // $foo is smaller/equal } else { // $bar is smaller }