fmod()
Cnory
Cnory 2017-03-16 09:39:18
0
3
1583
$r=fmod($x,$y);

是否等价于

$r=$x%$y;


Cnory
Cnory

reply all(3)
数据分析师

fmod()-PHP Chinese website Q&A-fmod()-PHP Chinese website Q&A

Take a look around and learn.

Cnory

欢迎补充

Cnory

在网上搜了一下,以下:

fmod是函数 原型

float fmod(float x, float y);

%是运算符,只能用于整型


所以

fmod($x,$y);

并不等价于

$x%$y;

以上。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!