In PHP I have the following code:
<?PHP
$var = .000021;
echo $var;
?>
the output is 2.1E-5 !
Why? it should print .000021
|
|
In PHP I have the following code:
the output is 2.1E-5 ! Why? it should print .000021
|
|||
|
|
|
|
2.1E-5 is the same number as 0.000021. That's how it prints numbers below 0.001. Use printf() if you want it in a particular format. Edit If you're not familiar with the |
|||
|
|
|
|
|
||
|
|
|
|
Use number_format or sprintf if you want to see the number as you expect.
|
||
|
|
|
|
In general, a number is a number, not a string, and this means that any programming language treats a number as a number. Thus, the number by itself doesn't imply any specific format (like using Unless you specify the number as string and convert it to a real number when needed, of course. Some languages can do this implicitly. |
||
|
|