I'm looking for a way to covert a numeric string(as shown in the subject) to a proper one like $40,000,000.
Does php offer a function to do this?
Thanks for the help!
|
I'm looking for a way to covert a numeric string(as shown in the subject) to a proper one like $40,000,000. Does php offer a function to do this? Thanks for the help! |
||||
|
|||
number_format()to pretty-fy the number with commas. – Marc B Mar 5 '11 at 20:32money_format()even. – Long Ears Mar 5 '11 at 20:34