10.01.2016, 00:27
Hello there,
I'm trying to create a function that expects an integer and returns a string (?) that has formatted the number so it reads good (I will only use this function for SendClientMessage's).
What will be a good way to do this?
Thanks in regards
I'm trying to create a function that expects an integer and returns a string (?) that has formatted the number so it reads good (I will only use this function for SendClientMessage's).
What will be a good way to do this?
PHP код:
FormatNumber(number)
{
// Ex. convert '10000' to '$10,000'
return converted;
}