We can convert the value to normal decimal value...
<?php
$mynumstr = "100,000,000.75";
$mynum = doubleval(str_replace(",","",$mynumstr));
echo "Normal Value:".number_format($mynumstr);
?>
Description
This function is an alias of: floatval().
Changelog
| Version | Description |
|---|---|
| 4.2.0 | doubleval() became an alias of floatval(). Before this time, only doubleval() existed. |
