黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

PHP fmod() 函數(shù)

PHP fmod() 函數(shù)

PHP Math 參考手冊 PHP Math 參考手冊

實(shí)例

返回 x/y 的浮點(diǎn)數(shù)余數(shù):

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

運(yùn)行實(shí)例 ?

定義和用法

The fmod() 函數(shù)返回 x/y 的浮點(diǎn)數(shù)余數(shù)。

語法

fmod(x,y);

參數(shù) 描述
x 必需。規(guī)定被除數(shù)。
y 必需。規(guī)定除數(shù)。

技術(shù)細(xì)節(jié)

返回值: x/y 的浮點(diǎn)數(shù)余數(shù)。
返回類型: Float
PHP 版本: 4.2+

PHP Math 參考手冊 PHP Math 參考手冊
相關(guān)文章