sprintf
PHP 4, PHP 5, PHP 7, PHP 8
sprintf - Return a formatted string
Example #1 Argument swapping
Result: There are 5 monkeys in the tree
Example #2 Specifying padding character
Result: ......123
000000123
Example #3 Position specifier with other specifiers
Result: The tree contains 0005 monkeys
Example #4 sprintf: formatting currency
Result: 123.1
123.10
Example #5 sprintf: scientific notation
Result: 3.625e+8
Example #6 sprintf: zero-padded integers
Example #7 of sprintf