I have this code
$vad = 1.1;
print gettype($vad);
var_dump($vad);
this will output:
double
float(1.1)
So it is double or float in php?
|
I have this code
this will output:
So it is double or float in php? |
||||
|
|
|
There is no difference in PHP. 'float', 'double' or 'real' are the same datatype. At the C level, everything is stored as a double. See the manual for more details: |
|||
|
|
|
For PHP, they are the same. http://www.php.net/manual/en/language.types.float.php :
The confusing part is why gettype (which you shouldn't use, anyway) returns "double" instead of "float". The answer is http://de2.php.net/manual/en/function.gettype.php:
|
|||
|
|
|
True Answer: http://docs.sun.com/source/806-3568/ncg_goldberg.html Short Answer: its all about the precision. |
|||||
|