Jump to content

[SOLVED] How to Omit q "," varibale in a pHp code


djbuddhi

Recommended Posts

my variable is 100,100.00

but i want to use as 10000

 

          i want to omit  , in a php variable ....how to do that ?

 

<?php
echo number_format('100,100.00', 2, '', '');
// Prints 10000
?>

 

LOL, that's only because the string 100,100.00 is typecasted into the float 100 (to respect what number_format() expects), resulting in 10000 because of the 2 decimals and no decimal point.

 

@OP

I'm not sure what you actually meant, but you can remove every comma from a string with str_replace():

 

echo str_replace(',', '', '100,100.00');
//100100.00

Or reformat the number with number_format(), removing decimals (rounding) and thousands separator:

 

$float = (float) str_replace(',', '', '100,100.00');
echo number_format($float, 0, '.', '');

LOL, that's only because the string 100,100.00 is typecasted into the float 100 (to respect what number_format() expects), resulting in 10000 because of the 2 decimals and no decimal point.

 

he asked to convert

my variable is 100,100.00

but i want to use as 10000

 

100,100.00 = 10000

 

Even by removing decimal and comma, he would be left with 100100

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.