I got a string
"1.0E+7"
And i hope convert it to a float
10000000.00
Is there any php functions do this job? Or I should do this conversion myself?
Further more, I will receive many strings like this, some are numerical and some are in scientific format, how can I convert all of them correctly without knowing the content?
if ($number < 1000)?