PHP can't recognize 1,200.00
(generated by number_format
) but only 1200.00
,
What's the general solution for this problem?
Basic number formatting In its most basic form, number_format() accepts a number to format, and returns a string containing the formatted number, rounded to the nearest whole number, with commas between each group of thousands: $myNumber = 1234567.89; // Displays "1,234,568" echo number_format( $myNumber );
$one_decimal_place = number_format(2.10, 1);
You could remove any character that is not a digit or a decimal point and parse that with floatval
:
$number = 1200.00; $parsed = floatval(preg_replace('/[^\d.]/', '', number_format($number))); var_dump($number === $parsed); // bool(true)
And if the number has not .
as decimal point:
function parse_number($number, $dec_point=null) { if (empty($dec_point)) { $locale = localeconv(); $dec_point = $locale['decimal_point']; } return floatval(str_replace($dec_point, '.', preg_replace('/[^\d'.preg_quote($dec_point).']/', '', $number))); }
If you're using 5.3 or higher (thanks ircmaxell), use numfmt_parse.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With