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
Cette fonction est un alias de : floatval().
Historique
| Version | Description |
|---|---|
| 4.2.0 | doubleval() est devenue un alias de floatval(). Avant ce temps, seulement doubleval() existait. |
