anevins Posted March 30, 2011 Share Posted March 30, 2011 Hi there, I need a PHP number format to match one and all of these sequence of numbers: 8500.00 9999.99 15.00 0.00 Quote Link to comment https://forums.phpfreaks.com/topic/232165-number-formatting/ Share on other sites More sharing options...
viviosoft Posted March 30, 2011 Share Posted March 30, 2011 I'm not sure I understand what your need is? You want to be able to format those numbers? So if you have 1234566. The function will format it to 12345.66? Quote Link to comment https://forums.phpfreaks.com/topic/232165-number-formatting/#findComment-1194273 Share on other sites More sharing options...
cyberRobot Posted March 30, 2011 Share Posted March 30, 2011 If you looking to format numbers, the following PHP functions might help: sprintf() - http://php.net/manual/en/function.sprintf.php printf() - http://php.net/manual/en/function.printf.php Quote Link to comment https://forums.phpfreaks.com/topic/232165-number-formatting/#findComment-1194278 Share on other sites More sharing options...
anevins Posted March 30, 2011 Author Share Posted March 30, 2011 I used the format already number_format($total,4,'.',''), but this gives the wrong format if my total amount is 3.40, so the result of formatting would be 3.40.00 But this format does work if my total amount is 34000, so the result of formatting would be 34000.00 Quote Link to comment https://forums.phpfreaks.com/topic/232165-number-formatting/#findComment-1194296 Share on other sites More sharing options...
Adam Posted March 30, 2011 Share Posted March 30, 2011 echo number_format(3.40, 4, '.', ''); That should, and for me does, return 3.4000. Quote Link to comment https://forums.phpfreaks.com/topic/232165-number-formatting/#findComment-1194299 Share on other sites More sharing options...
anevins Posted March 30, 2011 Author Share Posted March 30, 2011 Sorry, I meant number_format($total,2,'.','') Quote Link to comment https://forums.phpfreaks.com/topic/232165-number-formatting/#findComment-1194309 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.