« PHP:is_nan()関数 | メイン | PHP:sqrt()関数 »
2005年11月01日
PHP:fmod()関数
fmod()関数は、割り算の余りを求める関数です。
print fmod(10, 2.2); //10÷2.2の余りを出力
※上記の結果、「1.2」を出力します。
■ワンポイント
「%」演算子でも余りを求めることができますが、小数点(float値)の計算で使用した場合に正確な結果を求められないことがあります。
$ans = 10%2.2;
print $ans;
※上記の結果、「1」を出力します。
投稿者 wing : 2005年11月01日 19:26