Strip out the commas from a price meta value easily.
1 2 |
$formatted = 10,000.00 $unformatted = str_replace(",", "", $formatted); |
Strip out the commas from a price meta value easily.
1 2 |
$formatted = 10,000.00 $unformatted = str_replace(",", "", $formatted); |