In this tutorial you will study about float number in PHP, different examples will illustrate the concept
In this tutorial you will study about float number in PHP, different examples will illustrate the conceptPHP 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
?>
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)