标签: php c
似乎没有?
答案 0 :(得分:4)
使用PHP的fmod。
答案 1 :(得分:3)
这是答案
function modf($x, &$ipart) { $ipart = (int) $x; return $x - $ipart; }
由于