number_format
Description
The number_format of String for PHP format a number with grouped thousands.
Syntax
number_format( float $num, int $decimals = 0, ?string $decimal_separator = ".", ?string $thousands_separator = "," ): string
Parameters
num
The number being formatted.
decimals
Sets the number of decimal digits. If 0, the decimal_separator is omitted from the return value.
decimal_separator
Sets the separator for the decimal point.
thousands_separator
Sets the thousands separator.
Return
A formatted version of num.
Examples
1 · num
<? $num = 1234.56; $return = number_format($num); echo $return;
1,235
2 · decimals
<? $num = 1234.56; $decimals = 2; $return = number_format($num, $decimals); echo $return;
1,234.56
3 · decimal_separator
<? $num = 1234.56; $decimals = 2; $decimal_separator = ","; $return = number_format($num, $decimals, $decimal_separator); echo $return;
1,234,56
4 · thousands_separator
<? $num = 1234.56; $decimals = 2; $decimal_separator = ","; $thousands_separator = ""; $return = number_format($num, $decimals, $decimal_separator, $thousands_separator); echo $return;
1234,56
Links
String
- addcslashes
- addslashes
- bin2hex
- chop
- chr
- chunk_split
- convert_uudecode
- convert_uuencode
- count_chars
- crc32
- crypt
- echo
- explode
- fprintf
- get_html_translation_table
- hebrev
- hebrevc
- hex2bin
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- implode
- join
- lcfirst
- levenshtein
- localeconv
- ltrim
- md5
- md5_file
- metaphone
- nl_langinfo
- nl2br
- ord
- parse_str
- printf
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- rtrim
- setlocale
- sha1
- sha1_file
- similar_text
- soundex
- sprintf
- sscanf
- str_contains
- str_decrement
- str_ends_with
- str_getcsv
- str_increment
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_starts_with
- str_word_count
- strcasecmp
- strchr
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap