I have this number: 1.8112336829e+01
I get it from xml file with function simplexml_load
$xml = simplexml_load_file("data.xml");
$number = $xml->data->row->v[1]; // assign number with the value 1.8112336829e+01
echo $number * 8; // outputs 1.
I want to multiply this by 8. On calculator: 1.8112336829 * 10^1 * 8 = 144.898694632
How can I format this the correct way with PHP to receive the right answer?