Why Exponential value is string?
Posted: Mon Sep 30, 2013 2:02 pm
I used double codes. here. integer value is printing string type why?
it will defiantly shows : 10e10 => String
but when I use :
it also shows 10000000000 => String
how is this possible
Code: Select all
$name1 = "10e10";
var_dump($name1);
but when I use :
Code: Select all
$name1 = 10e10;
var_dump($name1);
how is this possible