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, '.', '');

Link to comment
Share on other sites

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

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.