How to remove dots from numbers?

33,642

Solution 1

Try this :

str_replace(".", "", $string);

Solution 2

You can use str_replace() function.

echo str_replace(".", "", $value);

$value would be 10.000

Solution 3

You can use str_replace like this:

$var1 = "10.000";
$var1 = str_replace(".", "", $var1);

more info about function is here

Share:
33,642
Simulator88
Author by

Simulator88

Updated on December 05, 2020

Comments

  • Simulator88
    Simulator88 over 3 years

    I have a form formatted with javascript, which makes numbers look like:

    10.000 or 2.300

    <form>
    <input type="text" name="price_1" value="2.300">
    </form>
    

    But i want to store them in mysql without dots. How to remove them?

    mysql_query("INSERT INTO prices price_a='price_1' WHERE id ='price_id'");
    

    I see money_format and number_format, but its just format the numbers dont remove anything.