Free Pascal <-> PHP | Explicit conversion to 64-bit real number

Free Pascal

double

Description

 double (expr)
Used keywords: double

Input


Output

Examples

Free Pascal

Explicit conversion to 64-bit real number the possible of use:
x:= 3.14159265359;     // x = 3.14159265359
y:= 123456789;         // y = 123456789.0
y :=double((x * y));          // y = 387850941.35821074
.
PHP

explicit conversion to 64-bit real number

Description

( type ) expression

Input


Output

Examples

PHP

Explicit conversion to 64-bit real number the possible of use:
$x= 3.14159265359;     // x = 3.14159265359
$y= 123456789;         // y = 123456789.0
$y =(double)($x * $y);          // y = 387850941.35821074

You can find it in the following collections: explicit type conversions
Languages: en hu cz sk