PHP fmod() 函數(shù)

2018-11-21 16:26 更新

PHP fmod() 函數(shù)

PHP Math 參考手冊(cè) PHP Math 參考手冊(cè)

實(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ù)。


語(yǔ)法

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 參考手冊(cè) PHP Math 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)