Logo

Programming-Idioms

History of Idiom 79 > diff from v20 to v21

Edit summary for version 21 by :
[PHP] cast to float

Version 20

2016-03-28, 12:38:30

Version 21

2016-03-28, 14:10:40

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Code
$y = number_format((float)$x, 2);
Code
$y = (float)$x;
Doc URL
http://php.net/number_format