fmod

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

fmod���س����ĸ���������

˵��

fmod ( float $x , float $y ) : float

���ر�������x�����Գ�����y�����õĸ�����������������r���Ķ����ǣ�x = i * y + r������ i ����������� y �Ƿ���ֵ���� r �� x �ķ�����ͬ����������ֵС�� y��

����

x

������

y

����

����ֵ

x/y�ĸ�����������

����

Example #1 fmod() ��ʹ��

<?php
$x 
5.7;
$y 1.3;
$r fmod($x$y);
// $r equals 0.5, because 4 * 1.3 + 0.5 = 5.7
?>