Just wondering in php, if it was possible to convert a string to a double. I am using a financial web service which provides a price as a string. I really need to process this as a double and was wondering how i would convert it

thanks

link|improve this question

50% accept rate
6  
Don't use floating point for monetary transaction code. – KennyTM Mar 29 '10 at 17:52
what should i do with it then? – csU Mar 29 '10 at 17:53
1  
Integers. Use cents or finer units. – KennyTM Mar 29 '10 at 17:54
KennyTM sums it up correctly. Some of the reasons you do this are so that floating point inaccuracies don't cause unexpected problems (numbers that look identical but are not, inaccuracies growing in magnitude over time due to impricise internal representation, etc.) – Beska Mar 29 '10 at 17:58
feedback

3 Answers

up vote 3 down vote accepted

Just use floatval().

E.g.:

$var = '122.34343';
$float_value_of_var = floatval($var);
echo $float_value_of_var; // 122.34343

And in case you wonder doubleval() is just an alias for floatval().

And as the other say, in a financial application, float values are critical as these are not precise enough. E.g. adding two floats could result in something like 12.30000000001 and this error could propagate.

link|improve this answer
feedback

For arbitrary precision mathematics PHP offers the Binary Calculator which supports numbers of any size and precision, represented as strings.

$s = '1234.13';
$double = bcadd($s,'0',2);

PHP: bcadd

link|improve this answer
feedback

Use doubleval(). But be very careful about using decimals in financial transactions, and validate that user input very carefully.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.