PHP fmod() 函數(shù)
PHP fmod() 函數(shù)
實(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
?>
$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+ |

相關(guān)文章
- PHP 變量
- PHP echo 和 print 語句
- PHP 運(yùn)算符
- PHP 函數(shù)
- PHP 文件上傳
- PHP Cookie
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP reset() 函數(shù)
- PHP cURL 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)