I have a an object like
{"latitude":-37.81425094604492, "longitude":144.96316528320312}
and I obtain
$latitude = $myobj->latitude;
but the value that is returned is -37.814250946045 , with 12 digits fractional part (rounded to 12 digits from the original 14)
how can I obtain the actual -37.81425094604492 with all 14 digits and no rounding?