App下载

demo_func_math_fmod 在线工具

demo_func_math_fmod 在线工具

<?php
$x = 7;
$y = 2;
$result = fmod($x,$y);
echo $result;
// $result equals 1, because 2 * 3 + 1 = 7
?>
运行结果