otuatail Posted October 20, 2011 Share Posted October 20, 2011 I want to display a number that has no decimal places in it to start with. I just want commas to seperate thousands. How hard can it be. The php manual goes into complex setlocale. I do need any of that. I have tried '#10n' Displays #10n not a value '%10n' Displays 10143000.00 I want 10,143,000 NO Decimal points No Local settings needed I can add a £ or a $ myself. This is driving me crazy. Link to comment https://forums.phpfreaks.com/topic/249487-money_format-problems/ Share on other sites More sharing options...
PFMaBiSmAd Posted October 20, 2011 Share Posted October 20, 2011 $formatted_number = number_format($your_value); Link to comment https://forums.phpfreaks.com/topic/249487-money_format-problems/#findComment-1280938 Share on other sites More sharing options...
jcbones Posted October 20, 2011 Share Posted October 20, 2011 I would second the suggestion of using number_format. Link to comment https://forums.phpfreaks.com/topic/249487-money_format-problems/#findComment-1280948 Share on other sites More sharing options...
otuatail Posted October 20, 2011 Author Share Posted October 20, 2011 Thanks that works better TA Desmond. Link to comment https://forums.phpfreaks.com/topic/249487-money_format-problems/#findComment-1280962 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.