PHP Float Number:
In our daily life we use different kind of number systems. Integer and Float numbers are most common in use. In the current tutorial we will study about Float number system.
Float number system or floating point numbers also known as "floats", "doubles", or "real numbers".
Following examples will help you to learn floating point number precisely.
Example:
<?php
$a=34.0000; echo "Value of a is:".$a; echo '<br/>Value of a is :'.((float)($a)); echo "<br/>Data type of a is; ". (gettype($a));?>
Output:
Value of a is:34
Value of a is :34
Data type of a is; double
Example:
<?php
$a
= 1.234;$b
= 1.2e3;$c
= 7E-10;var_dump(
$a);var_dump(
$b);var_dump(
$c);?>
Output:
float(1.234) float(1200) float(7.0E-10)